plpgsql select into question

Поиск
Список
Период
Сортировка
От J D
Тема plpgsql select into question
Дата
Msg-id F60LCVYl4maEqxGGmNN00002a97@hotmail.com
обсуждение исходный текст
Список pgsql-sql
sorry if I've sent this to the wrong list...

what is the proper way to do the following from within a plpgsql proc:
(where table2 is a variable...)

select into user_id max(id) from table2

This is part of a procedure that inserts a new record into table1 (table1 
has an auto-incrementing id field). Then a trigger inserts a new record into 
table2 using max() to get the new id from table1 (the trigger fires after 
insert on table1), then the procedure updates table2. In order to update 
table2, I need to get the max(id) so I can do:
update table2 set .... where id = user_id

Thanks very much. And I'm grateful for ideas about a better strategy.
cheers,
jd






_________________________________________________________________
MSN 8 helps eliminate e-mail viruses. Get 3 months FREE*. 
http://join.msn.com/?page=features/virus&xAPID=42&PS=47575&PI=7324&DI=7474&SU= 
http://www.hotmail.msn.com/cgi-bin/getmsg&HL=1216hotmailtaglines_virusprotection_3mf



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

Предыдущее
От: Gary Stainburn
Дата:
Сообщение: Re: COPY fails but INSERT works
Следующее
От: Jie Liang
Дата:
Сообщение: Re: plpgsql select into question