advertisement
Login | Register   
  Include Code  Search Tips
TODAY'S HEADLINES  |   ARTICLE ARCHIVE  |   FORUMS  |   TIP BANK
Browse DevX
Partners & Affiliates
advertisement
advertisement
Tip of the Day
Average Rating: 3.1/5 | Rate this item | 8 users have rated this item.
Expertise: Advanced
Language: SQL
October 26, 2009
A Better Way to Retrieve the ID of the Last Inserted Record
This tip is a follow-up to the tip Retrieving the ID of the Last Inserted Record. In that tip, the SELECT command is longer than it needs to be. Here's the original:
SELECT job_id FROM jobs WHERE job_id = @@IDENTITY

To simplify the code, I suggest simply writing:

SELECT @@IDENTITY

You get the same result either way, but the second version avoids a search of the jobs table.

Editor's Note: Beware of problems that can occur when using @@IDENTITY. Depending on your situation, you should consider using either the SCOPE_IDENTITY() or IDENT_CURRENT() method instead. For more information see this link.


Martin Vitek
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible. Submit your tip here.
Please rate this item (5=best)
 1  2  3  4  5
advertisement
advertisement