function returning multiple rows? - Mailing list pgsql-sql

From Patrik Kudo
Subject function returning multiple rows?
Date
Msg-id 36BB12DC.A05D490B@partitur.se
Whole thread Raw
List pgsql-sql
Hello,

I've been trying to create a function which returns multiple rows, but I
can't get it working. I'm I doing something wrong, or is it not
possible? This is my setup:

create table groups (userid int4, grp int4);

CREATE FUNCTION usersingroup(int4) RETURNS int4 AS 'SELECT userid FROM
groups WHERE grp = $1;' LANGUAGE 'sql';


When doing a

SELECT usersingroup(100);

I only get the first row. Is there any way to get all the rows?

Regards,
Patrik Kudo
kudo@partitur.se

pgsql-sql by date:

Previous
From: George Moga
Date:
Subject: Re: [SQL] date column
Next
From: Patrik Kudo
Date:
Subject: Function returning multiple rows?