From: | Jay Chiu <jaychiu(at)ureach(dot)com> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Cc: | jaychiu(at)ureach(dot)com |
Subject: | Question about SQL Control Structure(if then, for loop) |
Date: | 2006-05-17 01:51:45 |
Message-ID: | 200605170151.VAA30155@www20.ureach.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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
From | Date | Subject | |
---|---|---|---|
Next Message | Kis János Tamás | 2006-05-17 06:10:42 | Database OID |
Previous Message | Risto Tamme | 2006-05-16 21:01:02 | table constraint + INSERT |