获取newsequentialid()的值

DB中表的主键为uniqueidentifier且没有另建聚集索引时,使用newsequentialid()作为默认值来生成顺序的guid

有时程序需要在insert后获取到生成的guid继续处理,如,插入到其他表中。

声明表变量,通过output inserted读取生成ID(这里TableTest的主键为TestID)

declare @tb_id table(ID uniqueidentifier)
insert into TableTest(Col1,Col2)
OUTPUT INSERTED.TestID INTO @tb_id
values('Col1Value','Col2Value')
select ID from @tb_id

  

posted @ 2019-11-14 22:05  绿皮儿橘子  阅读(313)  评论(0编辑  收藏  举报