1、把主键定义为自动增长标识符类型
1)、在mysql中,如果把表的主键设为auto_increment类型,数据库就会自动为主键赋值。例如:
2)在sql数据库中,如果把表的主键设为identity类型,数据库就会自动为主键赋值。例如:
create table customers(id int identity(1,1) primary key not null, name varchar(15));
insert into customers(name) values('name1'),('name2');
select id from customers;
set identity_insert customers on;
insert into customers(id,name) values(1,'name1');
set identity_insert customers off;
alter table 表名 drop constraint 主键名
alter table 表名 add constraint 主键名 primary key (column1,column2,....,column)
2.从序列中获取自动增长的标识符
1)、在oracle中,可以为每张表的主键创建一个单独的序列,然后从这个序列中获取自动增加的标识符,把它赋值给主键。
例如,创建了一个名为customer_id_seq的序列,这个序列的起始值为1,增量为2。
一旦定义了customer_id_seq序列,就可以访问序列的curval和nextval属性。
curval:返回序列的当前值
nextval:先增加序列的值,然后返回序列值
以下sql语句先创建了customers表,然后插入两条记录,在插入时设定了id和name字段的值,其中id字段的值来自于customer_id_seq序列。
最后查询customers表中的id字段。 (sql语句大全)
3.通过触发器自动添加id字段
create or replace
trigger trg_customers before insert on customers for each row
begin
select customer_id_seq.nextval into :new.id from dual;
end;
insert into customers(name) values('test');