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