码迷,mamicode.com
首页 > 数据库 > 详细

Mysql通过sql语句添加约束和查看约束

时间:2018-05-02 16:24:42      阅读:1559      评论:0      收藏:0      [点我收藏+]

标签:tar   alter   ash   get   unique   sele   drop   key   关联   

一:添加约束

1.添加唯一约束:alter table student add constraint uk_name unique(name);

2.添加外键约束:

alter table 表名

add constraint fk_字段名

foreign key (字段名) references 关联的表名(关联的字段名)

3.添加check约束:

alter table 表名

add constraint CK_字段名

check (条件表达式)

4.添加默认值约束:

alter table 表名

add constraint DF_字段名

default ‘默认值‘ for 字段名

5.删除约束:

alter table 表名

drop constraint 约束名

二:查询约束和触发器

1.查询约束:SELECT * FROM information_schema.`TABLE_CONSTRAINTS`;(可以通过where table_name=‘student‘来约定只查询某个表的约束)

其实每次添加约束都是将添加的约束的信息存储到了information_schema这个schema的table_constraints表里;(mysql里``和bash的很像,也是执行``内的表达式而不是将里面作为字符串使用)

2.查看所有的触发器:select* from information_schema.triggers;

Mysql通过sql语句添加约束和查看约束

标签:tar   alter   ash   get   unique   sele   drop   key   关联   

原文地址:https://www.cnblogs.com/silentdoer/p/8979730.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!