Re: [SQL] Last insert id

2004-06-20 Thread Michalis Kabrianis
Andrei Bintintan wrote: "Is it safe to use "select max(table1_id) from table1" after the insert?" Yes it is safe, but ONLY if you use it inside a transaction.(BEGIN/COMMIT). BR. Hi, I think it would be safe to use : select currval('tablename_idname_seq'); inside a session to receive the current va

Re: [SQL] Last insert id

2004-06-15 Thread Rod Taylor
On Tue, 2004-06-15 at 03:05, Andrei Bintintan wrote: > "Is it safe to use "select max(table1_id) from table1" after the insert?" > > Yes it is safe, but ONLY if you use it inside a transaction.(BEGIN/COMMIT). No, this is not safe outside of the serializable isolation. rbt=# begin; BEGIN rbt=# se

Re: [SQL] Last insert id

2004-06-15 Thread Andrei Bintintan
"Is it safe to use "select max(table1_id) from table1" after the insert?" Yes it is safe, but ONLY if you use it inside a transaction.(BEGIN/COMMIT). BR. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of mixo Sent: Wednesday, June 09, 2004 9:24 AM To: [EM

Re: [SQL] Last insert id

2004-06-09 Thread Richard Huxton
mixo wrote: I have three tables which are related a serial field, table1_id, in on of the tables. Updating the tables is done through a transaction. My problem is, once I have insert a row in the first tables with table1_id, I need for the other two tables. How can I get this? Is it safe to us

Re: [SQL] Last insert id

2004-06-09 Thread mkl
I'm new on postgreSQL, so this might not be the simplest sollution: Use a sequence instead of serial. After you have generated the new id with your_seq.nextval you can get thesame number again with your_seq.currval. details at http://www.postgresql.org/docs/7.3/static/functions-sequence.html mi