On Mon, Nov 29, 2004 at 01:37:42PM -0500, [EMAIL PROTECTED] wrote:

> I have tried to create a simple function to select data from a table.  Could
> you all please correct me

It would be helpful if you told us what you want to happen and what
actually does happen.  Without that information we have to guess
at your intentions.

>   CREATE FUNCTION retrive_atype(varchar) RETURNS varchar AS '
>         BEGIN
>             RETURN select username from masteraccount where atype=$1;
>         END;
>     ' LANGUAGE 'plpgsql';
> 
> To call the function I used 
> 
> Select retrive_atype();

You've defined the function to take a VARCHAR argument but you
called it without an argument.  Also, you've defined it to return
a single VARCHAR value, but if the query could return multiple
values then the function should return SETOF VARCHAR.  Maybe this
is closer to what you need:

CREATE FUNCTION retrive_atype(VARCHAR) RETURNS SETOF VARCHAR AS '
DECLARE
    rec  RECORD;
BEGIN
    FOR rec IN SELECT username FROM masteraccount WHERE atype = $1 LOOP
        RETURN NEXT rec.username;
    END LOOP;

    RETURN;
END;
' LANGUAGE plpgsql;

You'd call the function like this:

SELECT * FROM retrive_atype('some-atype-value');

If that's not what you're looking for then please provide more details.

BTW, is "retrive" supposed to be "retrieve"?

-- 
Michael Fuhr
http://www.fuhr.org/~mfuhr/

---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend

Reply via email to