Re: Last ID

From: "Brett W(dot) McCoy" <bmccoy(at)chapelperilous(dot)net>
To: Catalin CIOCOIU <catalin(dot)ciocoiu(at)inpg(dot)fr>
Cc: "pgsql-novice(at)postgresql(dot)org" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Last ID
Date: 2001-03-02 16:33:34
Message-ID: Pine.LNX.4.30.0103021126490.21026-100000@chapelperilous.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Fri, 2 Mar 2001, Catalin CIOCOIU wrote:

> How can I get Last ID inserted ???
> The problem is for a multiuser(symultans) database. Exist a statment SQL
> witch get the last id inserted for a session ?

currval('<seq name>') is the way to get the value that was last inserted
into the database. However, there is no guarantee, in a multiuser
environment, that the value you got was the value you actually used. You
can also user last_value in an SQL statement, but you still have the
problem of having multiple backends generating sequence values.

A more reliable way is to explicitly call nextval('<seq name>') and use
the value returned to insert into the database.

Please see the CREATE SEQUENCE documentation at
http://www.postgresql.org/users-lounge/docs/7.0/user/sql-createsequence.htm

-- Brett
http://www.chapelperilous.net/~bmccoy/
---------------------------------------------------------------------------
While my BRAINPAN is being refused service in BURGER KING, Jesuit
priests are DATING CAREER DIPLOMATS!!

In response to

  • Last ID at 2001-03-02 15:50:53 from Catalin CIOCOIU

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Catalin CIOCOIU 2001-03-02 17:20:05 Re: Last ID
Previous Message Catalin CIOCOIU 2001-03-02 15:50:53 Last ID