How can I return multiple rows from a FUNCTION? - Mailing list pgsql-sql

From Ed Cox
Subject How can I return multiple rows from a FUNCTION?
Date
Msg-id 000001be20b0$028d4c20$600c2599@JEFFERSON
Whole thread Raw
List pgsql-sql
Is it possible to have a FUNCTION in Postgres that returns multiple rows?  Something like:
 
CREATE FUNCTION foo()
RETURNS ???
AS 'SELECT count(*) FROM bar'
LANGUAGE 'sql';
 
If not, can you suggest a way to encapsulate this functionality?  I'd like to keep all SQL code out of my GSP code.
 
Thanks very much,
Ed Cox

pgsql-sql by date:

Previous
From: Thomas Good
Date:
Subject: Re: [SQL] DBD
Next
From: "Ed Cox"
Date:
Subject: How can I return multiple rows from a FUNCTION? (revised)