--插入数据,并返回刚刚插入的数据id

INSERT INTO [soloreztest] ([name]) output inserted.id VALUES ('solorez')

--执行结果:

--id

-------------

--5

(1 行受影响)

 

第二种方法:
insert into table1 values(colvalue1,colvalue2)
select ident_current('table1')

第三种方法:
insert into table1 values(colvalue1,colvalue2)
select @@identity

 

此随笔或为自己所写、或为转载于网络。仅用于个人收集及备忘。