Re: plpgsql select into question

From: Jie Liang <jie(at)stbernard(dot)com>
To: 'J D' <jd88(at)hotmail(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: plpgsql select into question
Date: 2002-12-31 19:09:33
Message-ID: E7E213858379814A9AE48CA6754F5ECB1E197E@mail01.stbernard.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

use 'INSERT INTO table1 ... SELECT ... ' stmt in your pgplsql.
EXECUTE command is the way to execute a dynamic query in your function, read
developer guide PL section of docs.

Jie Liang

-----Original Message-----
From: J D [mailto:jd88(at)hotmail(dot)com]
Sent: Tuesday, December 31, 2002 7:50 AM
To: pgsql-sql(at)postgresql(dot)org
Subject: [SQL] plpgsql select into question

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&S
U=
http://www.hotmail.msn.com/cgi-bin/getmsg&HL=1216hotmailtaglines_virusprotec
tion_3mf

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Browse pgsql-sql by date

  From Date Subject
Next Message Tomasz Myrta 2003-01-01 11:34:49 Re: pg_dump problem
Previous Message Andrew J. Kelly 2002-12-31 16:04:35 Re: Slow self-join on a 100 million record table