script

Поиск
Список
Период
Сортировка
От Maik Trömel
Тема script
Дата
Msg-id 43730E7E.6020301@maitro.net
обсуждение исходный текст
Ответы Re: script
Re: script
Список pgsql-general
Hello!

I want to run a shell script with variables under Postgresql.

An example:
I want to make the following query;

select *  from  tablename where id=1;
select *  from  tablename where id=2;
select *  from  tablename where id=3;
select *  from  tablename where id=4;
.........

Is it possible to do it this way and what is the right syntax. All i've
tried out didn't work.

while i<100 do
    select * from tablename where id=i;
    i=i+1;
done

Thanks for your help.

Greetings
Maik

В списке pgsql-general по дате отправления:

Предыдущее
От: Nicolay A Vasiliev
Дата:
Сообщение: Dynamic web sites with PostgreSQL
Следующее
От: "surabhi.ahuja"
Дата:
Сообщение: Re: Postmaster failing to start on reboot