Variables in PSQL

Поиск
Список
Период
Сортировка
От Roger Mathis
Тема Variables in PSQL
Дата
Msg-id 3d299272$0$1005$7402020d@newsfeed.sunrise.ch
обсуждение исходный текст
Ответы Re: Variables in PSQL
Список pgsql-sql
Hi

I'm trying to declare a variable in PostgreSQL, so I can save some values in
it. After, I want to calculate with this variable.
For example:

declare vp integer;
select price into :vp from article where anr = 1;
vp := vp + 1;
update article set price = :vp where anr = 1;

Is there a posibility to do that without creating a funktion?
Thanks for your answers.

CU Roger






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

Предыдущее
От: Achilleus Mantzios
Дата:
Сообщение: Re: newbie question
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Rule WHERE condition problem