function no return -
03-17-2005
, 05:02 PM
I define a function
CREATE OR REPLACE FUNCTION my_function(n varchar) RETURNS void AS $$
DECLARE
...
BEGIN
...
END;
$$ LANGUAGE plpgsql;
It has no return. How can I invoke it? SHould I still use
select my_function('aaa')
Thanks,
autogoor |