标签:
create table Users( id int identity(10000,1),--id 从10000开始,增加长度为1 name nvarchar(10), );
--执行三次这个语句 insert into Users values(‘小昆虫‘);
SQL 自动增长 identity
原文地址:http://www.cnblogs.com/xuqiulin/p/4478696.html