plpgsql select into question

From: "J D" <jd88(at)hotmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: plpgsql select into question
Date: 2002-12-31 15:49:57
Message-ID: F60LCVYl4maEqxGGmNN00002a97@hotmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

Browse pgsql-sql by date

  From Date Subject
Next Message Andrew J. Kelly 2002-12-31 16:04:35 Re: Slow self-join on a 100 million record table
Previous Message Mark Davies 2002-12-31 15:46:13 Slow self-join on a 100 million record table