Re: SQL-question: returning the id of an insert querry
Douglas McNaught <doug@mcnaught.org>
From: Doug McNaught <doug@mcnaught.org>
To: scott_list@mischko.com
Cc: pgsql-general@postgresql.org
Date: 2003-11-12T20:41:34Z
Lists: pgsql-general
Scott Chapman <scott_list@mischko.com> writes: > What's the process to suggest changes to PG along these lines? Say, a > proposal to make it configurable for a user to have a INSERT return the > primary key that it just inserted rather than what it returns now? What if you have a multicolumn PK? I'm not actually sure PG keeps track of "primary keyness" -- I think it translates a PRIMARY KEY constraint into NOT NULL UNIQUE when the table is created. So it might be really hard to implement your feature, even if you can figure out what should happen for multicolumn PKs. -Doug