Fork me on GitHub

logo我的个人地带

努力每一天,每天进步一点点,每天快乐一点点

MSSQL对自增列插入指定值

set Identity_insert TableName on
insert into TableName( ID)
values(2147483647 )
set Identity_insert TableName off

TableName 为表名

ID 为表自增列

Comments 0