Re: can you select on an OID? - Mailing list pgsql-novice

From Dani Oderbolz
Subject Re: can you select on an OID?
Date
Msg-id 3EA63F3D.4020804@ecologic.de
Whole thread Raw
In response to can you select on an OID?  ("Jay G. Scott" <gl@arlut.utexas.edu>)
List pgsql-novice
Hi Jay,

>I want to insert a row; one of the items in the row is of
>type SERIAL.  After I insert the row, I want to know what
>value was assigned to the SERIAL item, call it the f_id.
>

Whenever you create a SERIAL column, Postgresql creates an imlicit
Sequence in the background
(as SERIAL isn´t a real Datatype).
I am not entirely sure about the naming convention of this implicit
sequequence, I think it is like this:
TABBLENAME_COLUMNNAME_seq
So, you can get what you need using the currval function.

So if your table looks like this:

CREATE TABLE test
( first   SERIAL );

then you can get the value like this:

SELECT currval('test_first_seq');


Regards, Dani


pgsql-novice by date:

Previous
From: "Williams, Travis L, NPONS"
Date:
Subject: Re: Select current_timestamp as a different timezone..
Next
From: radha.manohar@ndsu.nodak.edu
Date:
Subject: Re: postgresql-7.3 implementation