Re: How do I select the last Id in a column??? - Mailing list pgsql-admin

From Bruno Wolff III
Subject Re: How do I select the last Id in a column???
Date
Msg-id 20030626233001.GA11420@wolff.to
Whole thread Raw
In response to Re: How do I select the last Id in a column???  ("Josh Goldberg" <josh@4dmatrix.com>)
List pgsql-admin
On Thu, Jun 26, 2003 at 14:00:33 -0700,
  Josh Goldberg <josh@4dmatrix.com> wrote:
> to get the last record inserted just
> select * from row order by autoincId desc limit 1;
>
> if you have several clients doing this you might want to put your insert and
> the select inside a transaction.

That won't help. Your suggestion will only work in serializable transactions.

In read committed mode the select might see a value for autoincId from
a transaction that committed between the insert and the select.

pgsql-admin by date:

Previous
From: "Mendola Gaetano"
Date:
Subject: 7.4 Documetation
Next
From: "Mendola Gaetano"
Date:
Subject: Postgres RoadMap