DB中表的主键为uniqueidentifier且没有另建聚集索引时,使用newsequentialid()作为默认值来生成顺序的guid
有时程序需要在insert后获取到生成的guid继续处理,如,插入到其他表中。获取方法如下:
声明表变量,通过output inserted读取生成ID
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