在一张表中通过主键可以准确定位到一列。可以避免列中数据的重复。
主键的特性:
1.唯一约束
2.非空约束
语法:
1.create table [库名].表名 (列名1 数据类型1(长度)
primary key,列名2 数据类型2(长度));
2.create table [库名].表名 (列名1 数据类型1(长度),
列名2 数据类型2(长度),primary key(列名1));
第一种创建主键方式
create table school.bbq(
id int(2) primary key,
name varchar(3),
tall int(4),
age int(3)
);
insert into school.bbq values
(1001,'小贺',170,20),
(1002,'小窦',184,20),
(1003,'小张',175,20),
(1004,'小王',170,20);
-- 验证主键的唯一性约束
insert into school.bbq(id,name) values (1002,'小周');
-- 验证主键的非空约束
insert into school.bbq name) values ('小杨');
-- 第二种主键创建方式
create table school.qqq(
id int(2),
name varchar(3),
age int(2),
sex varchar(2),
primary key(id)
);
2.唯一约束(unique)
用途:用来约束一列中的所有数据,不能重复。
复制代码
create table school.aaa(
id int(3) unique,
name varchar(3),
age int(4)
);
3.非空约束(not null)
用途:用来约束一列中的所有数据,不能为null。
注意:所有数据类型都可以是空。
create table school.bbb(
id int(3) not null,
name varchar(3),
age int(4)
);
默认约束(default)
create table 表名 (列名1 数据类型1(长度),列名2,
数据类型2(长度),check(表达式))
例如:check(id>0)
create table school.qqq(
id int(2),
name varchar(3),
check(id>0)
);
查看一个表的键值
语法:show keys from 表名;
复制代码
表的修改
为表添加主键约束
语法:alter table 表名 add primary key(列名);
create table school.bbq(
id int(2),
name varchar(3),
age int(2)
);
desc school.bbq;
-- 查找展示主键数量
show keys from school.bbq;
-- 为表添加主键
alter table school.bbq add primary key(id);
show keys from school.bbq;
desc school.bbq;
修改表的名字
语法:alter table 旧表名 rename to 新表名;
alter table school.bbq rename to school.bbb;
将表中的主键删除
语法:alter table 表名 drop primary key;
复制代码
alter table school.bbq drop primary key;
为表中添加非空约束 modify :重新定义的意思
语法:alter table 表名 modify 列名 数据类型(长度) not null;
为表中的列添加非空约束---重新定义列的类型与约束
语法: alter table 表名 modify 列名 数据类型(长度) 列约束;
alter table school.bbq -- 修改的表
modify name varchar(4) -- 修改表中的某个对象列
not null; -- 不为空
alter table school.bbq
modify name varchar(3);
修改表中的某个列名----可以修改原类型的长度载数据兼容的情况下也可以修改原类型
语法:alter table 表名 change 旧列名 新列名 数据类型(长度);
注意:空串不等于空,空串是字符串类型
alter table school.student change id Sid int(3);
alter table school.student change Sid sid int(3);
alter table school.student change sid id int(2);
alter table school.student change id ID int(5);
desc school.student;
alter table school.student change ID Id int(5);
为表添加一列或多列
alter table school.student modify column card varchar(3);
删除列
语法:alter table 表名 drop column 列名;
语法;alter table 表名 drop column 列名1,
drop column 列名2,drop column 列名3;
alter table school.student drop column idcard1;
alter table school.student drop column id1;
alter table school.student drop column id2;
alter table school.student drop column idcard;
alter table school.student drop column id1,drop id2,drop id3;
增加多个列
alter table school.student add column(id1 int(2),id2 int(2),id3 int(2));
创建表时指定列为主键