主键约束,唯一约束,默认约束,检查约束,删除主键,删除外键按,删除列, ...

打印 上一主题 下一主题

主题 632|帖子 632|积分 1896

表的约束:

关键字:constraint
约束是一种表级别的限制,它通过对表的数据限制来保证数据的完整性和一致性
常见约束:
主键约束(primary key)
  1. 用途:就是用来约束其中的一列,作为所有列中的标识符(这一列的唯一代表),
复制代码
在一张表中通过主键可以准确定位到一列。可以避免列中数据的重复。
主键的特性:
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)
);
  1. 2.唯一约束(unique)
  2. 用途:用来约束一列中的所有数据,不能重复。
复制代码
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)
  1. 用途:在规定了的默认值约束的列时,不向该列插入其他数据,则该数据为默认数据
  2. 语法:create table 表名(列名1 数据类型1(长度)default 默认值,列名2 数据类型2(长度));
复制代码
外键约束(foregin key)
  1. 用途:也能确保数据的完整性也能展现和其他表的关系,
复制代码
一个表可以一个或多个外键,每个外键必须(references)另一个表的主键或唯一键。
语法:
create table 表名(列名1 数据类型1(长度),列名2 数据类型2(长度),
forrign key(本表外键列名) references 被引用的表(被引用的列));
create table school.bbp(
id int(3),
tall int(3),
brithday date,
foreign key(id) references bbq(id)
);
检查约束(check)
  1. 该约束在mysql上停用了,语句不会报错,但没有实际用处
  2. 作用:用于限制列中的值的范围,比如 check了一列,那么该列只允许特定的值。
  3. 语法:
复制代码
create table 表名 (列名1 数据类型1(长度),列名2,
数据类型2(长度),check(表达式))
例如:check(id>0)
create table school.qqq(
id int(2),
name varchar(3),
check(id>0)
);
查看一个表的键值
  1. 语法: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;
将表中的主键删除
  1. 语法: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 表名 add column 列名 数据类型(长度);
alter table school.student add column hahaha int(2);
-- 改变表中某列的列名
alter table school.student change hahaha card int(2);
-- 多列

语法:alter table 表名 add column
(列名1 数据类型1(长度),列名2 数据类型2(长度));
alter table school.student add column (idcard1 int(2),idcard2 int(3));
修改表中指定的列的数据类型
  1. 语法1:alter table 表名 modify [column]列名 新数据类型(长度);
复制代码
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));
创建表时指定列为主键
  1. 语法:create table 表名 (列名1 数据类型1(长度) primary key,
复制代码
列名2 数据类型2(长度) primary key)
语法:create table 表名 (列名1 数据类型1(长度),
列名2 数据类型2(长度) primary key(列名1,列名2));
创建表时指定某一列为外键
  1. 语法: create table 表名(列名1 数据类型1(长度),列名2 数据类型2(长度),
复制代码
foreign key(本表列) references 被引用的表(被引用的列);
在添加外键时指定该约束的名字
语法:alter table 表名 表名(列名1 数据类型1(长度),列名2 数据类型2(长度),
constraint 约束名 foreign key(本表列) references 被引用的表(被引用的列);
注意:引用被引用的列的数据类型(包括约束)需要一致
create table  school.student1 (
id int(2),
name varchar(2),
age int(2),
constraint id foreign key (id) references student(id)
);
删除指定表中的外键约束
  1. 1.删除外键
  2. 语法:alter table 表名 drop foreign key 外键名;
  3. 2.删除索引
  4. 语法:drop index 索引名 on 表名;
复制代码
alter table school.student1 drop foreign key student1_ibfk_1;
drop index id on school.student1;
show keys from school.student1;

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

何小豆儿在此

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表