Options for select from function returning record? - Mailing list pgsql-general

From Rory Campbell-Lange
Subject Options for select from function returning record?
Date
Msg-id 20030611135616.GB24986@campbell-lange.net
Whole thread Raw
Responses Re: Options for select from function returning record?  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
List pgsql-general
I'm interested to know what options there are in selecting values from a
function returning a RECORD.

For instance, in the query below:

temporary=> SELECT
                *
            FROM
                fn_v1_board_view_board (1, 1)
            AS (n_id integer, t_description varchar, t_name varchar,
                typer integer, n_id_photo integer);

it would be convenient to be able to omit some columns on occasion. Is
this possible, as if the record returned was like a table.

Also is it possible to ever truncate this sort of select as

temporary=> SELECT
                *
            FROM
                fn_v1_board_view_board (1, 1);

ommitting the "AS"?

Thanks,
Rory

--
Rory Campbell-Lange
<rory@campbell-lange.net>
<www.campbell-lange.net>

pgsql-general by date:

Previous
From: Rory Campbell-Lange
Date:
Subject: Return Record with CASE problem
Next
From: Stephan Szabo
Date:
Subject: Re: Options for select from function returning record?