SQL 自动增长 identity

create table Users(
id int identity(10000,1),--id 从10000开始,增加长度为1
name nvarchar(10),
);
--执行三次这个语句
insert into Users values('小昆虫');

原文地址:https://www.cnblogs.com/xuqiulin/p/4478696.html