Function multiple results returns - Mailing list pgsql-general

From Maxim
Subject Function multiple results returns
Date
Msg-id 9pd3ee$llv$1@news.tht.net
Whole thread Raw
List pgsql-general
Example:

select function getmylogs (inet) returns set of mylogs
as 'select mylogs.* from mylogs
where $1 = mylogs.local_ip'
language 'sql';

Returns:

?column?
--------
136538048
136538048
136538048
136538048
136538048
136538048
136538048

etc.

It not the table from database.

or nex example:

create function gelinvoice (int4) returns ?__?
as ' SELECT Invoice.Num, Invoice.Date, Buyer.Name
FROM Invoice, Buyer
WHERE Invoice.BuyerID=Buyer.ID AND Buyer.Num-$1
ORDER BY Buyer.Name'
Language 'sql';

What in that case it is necessary to write in ?__? ?
Or if it is necessary to return result of select of the time table?

Max.
mailto:maxik@e-foto.ru
http://virus.e-foto.ru




pgsql-general by date:

Previous
From: "Mark Higgins"
Date:
Subject: Column existence - how to check?
Next
From: rdacker@pacbell.net (rdack)
Date:
Subject: Re: pypgsql 'create database' problem