Question about SQL Control Structure(if then, for loop) - Mailing list pgsql-sql

From Jay Chiu
Subject Question about SQL Control Structure(if then, for loop)
Date
Msg-id 200605170151.VAA30155@www20.ureach.com
Whole thread Raw
Responses Re: Question about SQL Control Structure(if then, for loop)
Re: Question about SQL Control Structure(if then, for loop)
List pgsql-sql
Hello,

I am new to PostgreSQL and want to use the IF-THEN; LOOP
statements in my SQL command file. Thus I may use psql -f cfile
to exceute.

However I always got syntax error on if/for in psql. For
example: 
RDM=# for i in 1 .. 10 loop
RDM-# select "test"
RDM-# end loop;
ERROR:  syntax error at or near "for" at character 1
LINE 1: for i in 1 .. 10 loop

RDM=# if exits ( select * from testtable)
RDM-# then
RDM-# select "TEST"
RDM-# ;
ERROR:  syntax error at or near "if" at character 1
LINE 1: if exits ( select * from testtable)       ^

Can someone tell me how to use if/for in psql? The document
shows the control structures in the PL/pgSQL section. Must I use
if/for inside some procedure/function?

Thanks a lot.

Jay


________________________________________________
Get your own "800" number
Voicemail, fax, email, and a lot more
http://www.ureach.com/reg/tag


pgsql-sql by date:

Previous
From: "Risto Tamme"
Date:
Subject: table constraint + INSERT
Next
From: Guillaume LELARGE
Date:
Subject: Re: Add column and specify the column position in a table