Safest way to get last record ID from a table

后端 未结 8 1143
遇见更好的自我
遇见更好的自我 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:57

    I think this one will also work:

    SELECT * FROM ORDER BY id DESC LIMIT 0 , 1

提交回复
热议问题