SQL Server stored procedures? - Mailing list pgsql-general

From Todd P Marek
Subject SQL Server stored procedures?
Date
Msg-id 2F2789D4-4270-11D9-A89E-000393823F90@somahq.com
Whole thread Raw
Responses Re: SQL Server stored procedures?
List pgsql-general
Hello-


I have been trying for a while to write a function that would return
multiple rows and columns in a similar fashion as SQL server stored
procedures.


I can get my functions to return multiple rows and columns but only
from a single table.  I worked around this by creating a view that
ties all my tables together like so (basic example)-><fontfamily><param>Courier</param><x-tad-bigger>


CREATE FUNCTION usp_grab_classes() RETURNS SETOF classes

     AS 'SELECT classes.* FROM classes'

     LANGUAGE 'sql';


</x-tad-bigger></fontfamily>I am curious if there is a way to select
and return multiple columns from multiple tables without having to
first create a view.


Any help would greatly appreciated.


Todd Marek<fontfamily><param>Courier</param><x-tad-bigger>


</x-tad-bigger></fontfamily><italic>"If you think you understand
something it's habit."

--Gary Kraftsow--</italic>
Hello-

I have been trying for a while to write a function that would return
multiple rows and columns in a similar fashion as SQL server stored
procedures.

I can get my functions to return multiple rows and columns but only
from a single table.  I worked around this by creating a view that ties
all my tables together like so (basic example)->

CREATE FUNCTION usp_grab_classes() RETURNS SETOF classes
      AS 'SELECT classes.* FROM classes'
      LANGUAGE 'sql';

I am curious if there is a way to select and return multiple columns
from multiple tables without having to first create a view.

Any help would greatly appreciated.

Todd Marek

"If you think you understand something it's habit."
--Gary Kraftsow--

pgsql-general by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: VACUUM and ANALYZE Follow-Up
Next
From: Jan Wieck
Date:
Subject: Re: Upcoming Changes to News Server ...