这篇文章主要介绍了数据库sql语句设置外键的方法,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
数据库sql语句设置外键的方法:1、添加外键约束【alter table 从表 add foreign key外键字段) references 主表主键字段)】;2、删除外键约束【alter table 表名 drop foreig】。
数据库sql语句设置外键的方法:
1、外键约束作用
外键约束:对外键字段的值进行更新和插入时会和引用表中字段的数据进行验证,数据如果不合法则更新和插入会失败,保证数据的有效性
2、对于已经存在的字段添加外键约束
-- 为cls_id字段添加外键约束 alter table students add foreign keycls_id) references classesid); 【首先会验证的,不符合就会报错】
3、在创建数据表时设置外键约束
-- 创建学校表 create table school id int not null primary key auto_increment, name varchar10) );
-- 创建老师表 create table teacher id int not null primary key auto_increment, name varchar10), s_id int not null, foreign keys_id) references schoolid) );
4、删除外键约束
-- 需要先获取外键约束名称,该名称系统会自动生成,可以通过查看表创建语句来获取名称 show create table teacher;
-- 获取名称之后就可以根据名称来删除外键约束 alter table teacher drop foreign key 外键名;