Primary Key
在物理层面上,主键有两个用途:
惟一地标识一行
作为一个可以被外键有效引用的对象
注意:
1.类似于索引,表中每一行都有一个唯一标识自己的索引.不允许有NULL值.
2.永远也不要更新MySQL主键
- 主键不应包含动态变化的数据
4.主键应当由计算机自动生成
- 声明方法:
创建表时 :
create table students , primary key();
创表后设置主键
alter table customers add primary key();
主键自动增长在Mysql,SqlServer,Oracle中的设置
- 把id设为auto_increment类型,mysql数据库会自动按递增的方式为主键赋值。
create table customers(id int auto_increment primary key not null, name
varchar(15));
insert into customers(name) values("name1"),("name2");
select id from customers;
查询结果:
id
1
2
在SQLServer中,如果把表的主键设为identity类型,数据库就会自动为主键赋值
create table customers(id int identity(1,1) primary key not null, name
varchar(15));
insert into customers(name) values("name1"),("name2");在Oracle中,可以为每张表的主键创建一个单独的序列,然后从这个序列中获取自动增加的标识符,把它赋值给主键
create sequence customer_id_seq increment by 2 start with 1
一旦定义了customer_id_seq序列,就可以访问序列的curval和nextval属性。
curval:返回序列的当前值
nextval:先增加序列的值,然后返回序列值
如: 创建一个名为customer_id_seq的序列,这个序列的起始值为1,增量为1
create table customers(id int primary key not null, name varchar(15));
insert into customers values(customer_id_seq.curval, "name1")(customer_id_seq.nextval, "name2");