Safest way to get last record ID from a table

后端 未结 8 1146
遇见更好的自我
遇见更好的自我 2020-12-03 09:53

In SQL Server 2008 and higher what is the best/safest/most correct way

  1. to retrieve the ID (based on autoincrementing primary key) out of the database table?
8条回答
  •  爱一瞬间的悲伤
    2020-12-03 10:39

    You can try:

    SELECT id FROM your_table WHERE id = (SELECT MAX(id) FROM your_table)
    

    Where id is a primary key of the your_table

提交回复
热议问题