Thread: using EXECUTE on Selects

using EXECUTE on Selects

From
"Radhika Sambamurti"
Date:
Hi,

Here is my need:

I have to select data by building up the where clause:
example: WHERE firm = 'nnn'        WHERE firm = 'nnn' AND symbol = 'bbb'        WHERE date BETWEEN 'startdate' AND
'enddate'AND symbol = 'bbb'
 

And so on.

I was hoping to write a function where I can build up my where clause
(dynamic sql) and use the EXECUTE command with it. But I just read that
the SELECT INTO has not been implemented for use with EXECUTE.

Is there a way to select data using EXECUTE?

Thanks.
Radhika


-- 
It is all a matter of perspective. You choose your view by choosing where
to stand.
Larry Wall
---



Re: using EXECUTE on Selects

From
"Rodrigo De León"
Date:
On 7/11/07, Radhika Sambamurti <radhika@88thstreet.com> wrote:
> Is there a way to select data using EXECUTE?

FOR-IN-EXECUTE.

See:
http://www.postgresql.org/docs/8.2/static/plpgsql-control-structures.html#PLPGSQL-RECORDS-ITERATING


Re: using EXECUTE on Selects

From
Andrew Sullivan
Date:
On Wed, Jul 11, 2007 at 12:41:21PM -0400, Radhika Sambamurti wrote:
> I was hoping to write a function where I can build up my where clause
> (dynamic sql) and use the EXECUTE command with it. But I just read that
> the SELECT INTO has not been implemented for use with EXECUTE.
> 
> Is there a way to select data using EXECUTE?

You missed the opening sentence of the previous paragraph:
The INTO clause specifies where the results of a SELECTcommand should be assigned.

A

-- 
Andrew Sullivan  | ajs@crankycanuck.ca
The whole tendency of modern prose is away from concreteness.    --George Orwell


Re: using EXECUTE on Selects

From
"A. Kretschmer"
Date:
am  Wed, dem 11.07.2007, um 12:41:21 -0400 mailte Radhika Sambamurti folgendes:
> Hi,
> 
> Here is my need:
> 
> I have to select data by building up the where clause:
> example: WHERE firm = 'nnn'
>          WHERE firm = 'nnn' AND symbol = 'bbb'
>          WHERE date BETWEEN 'startdate' AND 'enddate' AND symbol = 'bbb'
> 
> And so on.
> 
> I was hoping to write a function where I can build up my where clause
> (dynamic sql) and use the EXECUTE command with it. But I just read that
> the SELECT INTO has not been implemented for use with EXECUTE.

You can use "execute sql into foo;" with sql your dynamic sql and foo
your variable to store the result.


Andreas
-- 
Andreas Kretschmer
Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID:   0x3FFF606C, privat 0x7F4584DA   http://wwwkeys.de.pgp.net


Re: using EXECUTE on Selects

From
"Radhika Sambamurti"
Date:
Thanks! That worked. I really could'nt make sense of the documentation,
the way it was worded. I tested it out and it works.

Thanks again!

Radhika

> am  Wed, dem 11.07.2007, um 12:41:21 -0400 mailte Radhika Sambamurti
> folgendes:
>> Hi,
>>
>> Here is my need:
>>
>> I have to select data by building up the where clause:
>> example: WHERE firm = 'nnn'
>>          WHERE firm = 'nnn' AND symbol = 'bbb'
>>          WHERE date BETWEEN 'startdate' AND 'enddate' AND symbol = 'bbb'
>>
>> And so on.
>>
>> I was hoping to write a function where I can build up my where clause
>> (dynamic sql) and use the EXECUTE command with it. But I just read that
>> the SELECT INTO has not been implemented for use with EXECUTE.
>
> You can use "execute sql into foo;" with sql your dynamic sql and foo
> your variable to store the result.
>
>
> Andreas
> --
> Andreas Kretschmer
> Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
> GnuPG-ID:   0x3FFF606C, privat 0x7F4584DA   http://wwwkeys.de.pgp.net
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: Have you checked our extensive FAQ?
>
>                http://www.postgresql.org/docs/faq
>


-- 
It is all a matter of perspective. You choose your view by choosing where
to stand.
Larry Wall
---