摘要: Q&A1. How to get the id of current inserted record?using @@identity keyword.E.G.create table table1 (id int identity(1,1) not null, name nvarchar(64))goinsert into table1('Hello world')goselect @@... 阅读全文