Re: Returning data from multiple functions

Поиск
Список
Период
Сортировка
От tlund79
Тема Re: Returning data from multiple functions
Дата
Msg-id 1320925032428-4980786.post@n5.nabble.com
обсуждение исходный текст
Ответ на Returning data from multiple functions  (tlund79 <thomas.lund@eniro.no>)
Ответы Re: Returning data from multiple functions  (Pavel Stehule <pavel.stehule@gmail.com>)
Список pgsql-sql
I know got this far thanks to Pavle Stehule. The function worked and returned
the data when the variables was predefined after "return query".

When tried to replace these with variables passed through the function call
I got this message;
ERROR:  syntax error at or near "RETURN"
LINE 1: ...ll select ppr_pf_inn_antall( $1 , $2 , $3 , $4 , $5 ) RETURN
              ^
 
QUERY:   select ppr_pf_inn_verdi( $1 , $2 , $3 , $4 , $5 ) union all select
ppr_pf_inn_antall( $1 , $2 , $3 , $4 , $5 ) RETURN
CONTEXT:  SQL statement in PL/PgSQL function "ppr_test_to_funk" near line 7



CREATE OR REPLACE FUNCTION ppr_test_to_funk(aarstall int, frauke int, tiluke
int, prosjektkode int[], teamkode int[]) RETURNS setof integer AS
$BODY$

I called the function with this: select * from
ppr_test_to_funk(2011,1,52,array[3], array[7,4])

Am I lost or are this possible?

*Updated function:*

BEGIN
return query
select ppr_pf_inn_verdi($1,$2,$3,$4,$5)
union all
select ppr_pf_inn_antall($1,$2,$3,$4,$5)

RETURN;
END;
$BODY$ LANGUAGE plpgsql VOLATILE COST 100;
ALTER FUNCTION ppr_test_to_funk() OWNER TO oystein;

--
View this message in context:
http://postgresql.1045698.n5.nabble.com/Returning-data-from-multiple-functions-tp4980747p4980786.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.


В списке pgsql-sql по дате отправления:

Предыдущее
От: tlund79
Дата:
Сообщение: Returning data from multiple functions
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: Returning data from multiple functions