sql语句 如何添加自增长主键
发布网友
发布时间:2022-04-09 15:13
我来回答
共3个回答
热心网友
时间:2022-04-09 16:43
第一步:创建sequence;
create sequence test_seq
increment by 1
start with 4
maxvalue 1800
minvalue 4
cache 4;
解释:创建名为test_seq的sequence,从4开始,每次增加1,最大值是1800,最小值是4,cache 4 表示会缓存四个序列号,比如4、 5、 6、 7。
第二步:sql语句插入,每次插入一次就会根据增加规则自动递增。
sql:insert into tablename(id) values(test_seq.nextval);
解释:第一次插入的id为 4,再次执行为5,依次类推
热心网友
时间:2022-04-09 18:01
ALTER TABLE 表名 ADD 列名 int IDENTITY (1,1) PRIMARY KEY
热心网友
时间:2022-04-09 19:35
create table 表名(字段名 int not null primary key identity(1,1))