How to pass the parameter to the function
Posted
by avaro
on Stack Overflow
See other posts from Stack Overflow
or by avaro
Published on 2010-06-10T04:27:40Z
Indexed on
2010/06/10
4:33 UTC
Read the original article
Hit count: 130
postgresql
Hi,
I have stored procedure that takes input parameter of table type.
procedure test( name samptable type);
My table has the structure like
table: samptable( name chracter varying; address text[]; )
So how shoul i pass the values to the function to fill the table.
© Stack Overflow or respective owner