Return value of 'serial' column on insert - Mailing list pgsql-general

From Madison Kelly
Subject Return value of 'serial' column on insert
Date
Msg-id 41F87D9D.6020204@alteeve.com
Whole thread Raw
Responses Re: Return value of 'serial' column on insert
List pgsql-general
Hi all,

   I have several tables with an 'id' column which is a simple 'serial
unique' type. Often when I insert a record the next thing I need is to
add or edit another table elsewhere using the ID of the entry I just
added. Currently what I do is:

SELECT <table>_id FROM <table> ORDER BY <table>_id DESC LIMIT 1;

   and assume (safely thus far) that the returned value is the one I
just created. Obviously this is bulky and, should by chance another
column be added in that time between insert and read, I would get the
wrong value.

   Is there a way to do an INSERT (in perl, btw) where pgSQL returns the
value just created by the same INSERT? Thanks!

Madison

--
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Madison Kelly (Digimer)
TLE-BU, The Linux Experience; Back Up
http://tle-bu.thelinuxexperience.com
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

pgsql-general by date:

Previous
From: Bruno Wolff III
Date:
Subject: Re: self-join on subselect
Next
From: "Max"
Date:
Subject: Re: Splitting queries across servers