I inserted some values into a table. There is a column whose value is auto-generated. In the next statement of my code, I want to retrieve this value.
Can you tell me how to do it the right way?
|
|
I inserted some values into a table. There is a column whose value is auto-generated. In the next statement of my code, I want to retrieve this value. Can you tell me how to do it the right way?
|
||
|
|
|
@@IDENTITY is not scope safe and will get you back the id from another table if you have an insert trigger on the original table, always use SCOPE_IDENTITY() |
||
|
|
|
If your using PHP and MySQL you can use the mysql_insert_id() function which will tell you the ID of item you Just instered. |
||
|
|
|
|
This is how I do my store procedures for MSSQL with an autogenerated ID.
|
||
|
|
|
|
If you are working with Oracle:
example:
or if you are calling from... Java with a CallableStatement (sry, it's my field)
and declaring an autput parameter for the statement |
||
|
|
|
|
Again no language agnostic response, but in Java it goes like this:
|
|||
|
|
|
An important note is that using vendor SQL queries to retrieve the last inserted ID are safe to use without fearing about concurrent connections. I always thought that you had to create a transaction in order to INSERT a line and then SELECT the last inserted ID in order to avoid retrieving an ID inserted by another client. But these vendor specific queries always retrieve the last inserted ID for the current connection to the database. It means that the last inserted ID cannot be affected by other client insertions as long as they use their own database connection. |
||
|
|
|
|
There's no standard way to do it (just as there is no standard way to create auto-incrementing IDs). Here are two ways to do it in PostgreSQL. Assume this is your table:
You can do it in two statements as long as they're consecutive statements in the same connection (this will be safe in PHP with connection pooling because PHP doesn't give the connection back to the pool until your script is done):
lastval() gives you the last auto-generated sequence value used in the current connection. The other way is to use PostgreSQL's RETURNING clause on the INSERT statement:
This form returns a result set just like a SELECT statement, and is also handy for returning any kind of calculated default value. |
||
|
|
|
|
Remember that @@IDENTITY returns the most recently created identity for your current connection, not necessarily the identity for the recently added row in a table. You should always use SCOPE_IDENTITY() to return the identity of the recently added row. |
||
|
|
|
|
What database are you using? As far as I'm aware, there is no database agnostic method for doing this. |
||
|
|
|
|
Rob's answer would be the most vendor-agnostic, but if you're using MySQL the safer and correct choise would be the built-in |
||
|
|
|
|
This is how I've done it using parameterized commands. MSSQL
MySQL
|
||
|
|
|
|
There is also @@identity, but if you have a trigger, it will return the results of something that happened during the trigger, where scope_identity respects your scope. |
||
|
|
|
|
For SQL 2005: Assuming the following table definition:
You can use the following:
Which will return the value of the ID column. |
||
|
|
|
|
This should work with any kind of database. |
||
|
|
|
|
An Environment Based Oracle Solution:
|
||
|
|
|
|
This works very nicely in SQL 2005:
It has the benefit of returning all the IDs if your INSERT statement inserts multiple rows. |
||
|
|