SQL - 插入一行并返回主键
我在有主键的表中插入了一行数据.如何将一个选择"刚刚插入的第一行的主键?
I have inserted a row with some data in a table where a primary key is present. How would one "SELECT" the primary key of the row one just inserted?
我应该更具体地提到我目前使用 SQLite.
I should have been more specific and mentioned that I'm currently using SQLite.
推荐答案
对于 MS SQL Server:
For MS SQL Server:
SCOPE_IDENTITY()
将返回最后生成的身份您当前范围内的价值:
SCOPE_IDENTITY()
will return you the last generated identity value within your current scope:
SELECT SCOPE_IDENTITY() AS NewID
相关文章