Re: getting auto increment id value - Mailing list pgsql-novice

From Josh Kupershmidt
Subject Re: getting auto increment id value
Date
Msg-id CAK3UJREU8nK7zhWrHBgbsxWA54ztXo_c5XWbkewL3XLfvCGL1Q@mail.gmail.com
Whole thread Raw
In response to getting auto increment id value  (M. Emre Çolak <memrecolak@hotmail.com>)
List pgsql-novice
On Tue, Dec 13, 2011 at 3:52 AM, M. Emre Çolak <memrecolak@hotmail.com> wrote:

>   I have a table and it's only distinct value is it's auto incremented id. I
> need to insert like 80.000 rows at ones so I have some time issues. Problem
> is I need a way to get a return value which is id of my inserted row since I
> need that id for another insert action. I think I should use a function for
> this but I am not sure how I can get Id of my inserted row.

Use INSERT INTO tbl ... RETURNING your_auto_inc_column. See also the
docs for the RETURNING clause at:
  http://www.postgresql.org/docs/current/static/sql-insert.html

Josh

pgsql-novice by date:

Previous
From: "Jean-Yves F. Barbier"
Date:
Subject: Re: How to establish a SSL connection to a postgresql server
Next
From: Daniel Northam
Date:
Subject: TRIGGER FUNCTION - TO CREATE TABLE name AS SELECT