Question about SQL Control Structure(if then, for loop)

Поиск
Список
Период
Сортировка
От Jay Chiu
Тема Question about SQL Control Structure(if then, for loop)
Дата
Msg-id 200605170151.VAA30155@www20.ureach.com
обсуждение исходный текст
Ответы Re: Question about SQL Control Structure(if then, for loop)  ("A. Kretschmer" <andreas.kretschmer@schollglas.com>)
Re: Question about SQL Control Structure(if then, for loop)  ("Michael Artz" <mlartz@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: "Risto Tamme"
Дата:
Сообщение: table constraint + INSERT
Следующее
От: Guillaume LELARGE
Дата:
Сообщение: Re: Add column and specify the column position in a table