主键的作用: 可以唯一标识 一条数据,每张表里面只能有一个主键,。
主键特性: 非空且唯一。当表里没有主键的时,第一个出现的非空且为唯一的列,被当成主键。
例子:
create table tb3(
id int primary key,
name varchar(20) not null
);
唯一标识 一条数据
#删除主键约束
mysql -> alter table tb3
-> drop primary key
#添加主键约束
mysql> alter table tb3
-> add primary key(id);