Re: [solved] aliases and set of record

From: Ivan Sergio Borgonovo <mail(at)webthatworks(dot)it>
To: <pgsql-general(at)postgresql(dot)org>
Subject: Re: [solved] aliases and set of record
Date: 2008-03-20 12:47:07
Message-ID: 20080320134707.60ca4d01@webthatworks.it
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, 20 Mar 2008 13:41:39 +0100
Ivan Sergio Borgonovo <mail(at)webthatworks(dot)it> wrote:

[snip]

> for _row in
> select _ItemID as __ItemID, _qty as __qty from
> BasketItems(_BasketID,null)
> loop
...

->

for _row in
select bi._ItemID as __ItemID, bi._qty as __qty from
BasketItems(_BasketID,null) as bi
loop

A bit annoying but works.

I hope it will be taken as a reference and not as garbage on the list.

--
Ivan Sergio Borgonovo
http://www.webthatworks.it

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Martijn van Oosterhout 2008-03-20 13:08:13 Re: Problem with async notifications of table updates
Previous Message Ivan Sergio Borgonovo 2008-03-20 12:41:39 aliases and set of record