Connecting Tech Pros Worldwide Forums | Help | Site Map

function call

Keow Yeong Huat Joseph
Guest
 
Posts: n/a
#1: Nov 11 '05
Hi,

Would anyone able to advise how can I call a function/Stored procedure? what command to issue?

Thanks.


Best Regards

_______________________

Joseph Keow



darren@crystalballinc.com
Guest
 
Posts: n/a
#2: Nov 11 '05

re: function call


create or replace function test(integer) returns boolean as '
declare
number alias for $1;
begin
if number = 0 then
return false;
else
return true;
end if;
end;' language 'plpgsql';

to call the function you can

SELECT test(1);

or can do

SELECT user_id,
user_name,
test(user_id) AS test
FROM users

or you can call from another function or from code.

Depending on where you wish to call the function / sp.

HTH
Darren



On Mon, 15 Sep 2003, Keow Yeong Huat Joseph wrote:
[color=blue]
> Hi,
>
> Would anyone able to advise how can I call a function/Stored procedure? what command to issue?
>
> Thanks.
>
>
> Best Regards
>
> _______________________
>
> Joseph Keow
>
>[/color]

--
Darren Ferguson


---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

Closed Thread