Mega Code Archive

 
Categories / PostgreSQL / Store Procedure Function
 

Functions with Output Parameters

postgres=# postgres=# -- Functions with Output Parameters postgres=# postgres=# CREATE FUNCTION add_em (IN x int, IN y int, OUT sum int) postgres-# AS 'SELECT $1 + $2' postgres-# LANGUAGE SQL; CREATE FUNCTION postgres=# postgres=# SELECT add_em(3,7);  REATE  add_em --------      10 (1 row) postgres=# postgres=# drop function add_em(IN x int, IN y int, OUT sum int); DROP FUNCTION postgres=# postgres=#