Re: SQL Server stored procedures? - Mailing list pgsql-general

From Michael Fuhr
Subject Re: SQL Server stored procedures?
Date
Msg-id 20041130042141.GA87257@winnie.fuhr.org
Whole thread Raw
In response to SQL Server stored procedures?  (Todd P Marek <affe23@somahq.com>)
List pgsql-general
On Mon, Nov 29, 2004 at 07:35:57PM -0600, Todd P Marek wrote:

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

You could use CREATE TYPE to create a composite type with the desired
fields and return SETOF that type.  When I do this, I sometimes
create the type to contain only keys; if I want additional columns
then I join the function results (rows of keys) to the appropriate
tables.

Depending on why you object to creating a view to get a composite
type, you might not want to create a custom type either.  The
function could return SETOF RECORD, but then queries that use it
will have to supply their own column definitions.  I prefer to do
this only when the return rows don't have a fixed format.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: VACUUM and ANALYZE Follow-Up
Next
From: "Harvey, Allan AC"
Date:
Subject: SCO installation help