mysql外键基本功能与用法详解
数据库  /  管理员 发布于 7年前   576
本文实例讲述了mysql外键基本功能与用法。分享给大家供大家参考,具体如下:
首发日期:2018-04-12
create table student(id int primary key auto_increment,name varchar(15) not null,gender varchar(10) not null,cid int,foreign key(cid) references class(id));
create table class(id int primary key auto_increment,cname varchar(15));
foreign key(外键字段) references 父表 (主键) on delete set null on update cascade;
-- 实验表结构create table class(id int primary key auto_increment,cname varchar(15));create table student2(id int primary key auto_increment,name varchar(15) not null,gender varchar(10) not null,cid int,foreign key(cid) references class(id) on delete set null on update cascade);-- 实验表数据:insert into class(cname) values("python"),("linux"),("java"),("html5");insert into student2(name,gender,cid) values("Alice","female",1);insert into student2(name,gender,cid) values("John","female",2);insert into student2(name,gender,cid) values("Jack","female",3);insert into student2(name,gender,cid) values("Amy","female",4);select * from student2;select * from class;-- 尝试更新级联update class set id = 6 where cname="python";select * from student2; -- 结果原来的python的cid=6-- 尝试删除置空delete from class where cname="java";select * from student2; -- 结果原来的java的cid=null 更多关于MySQL相关内容感兴趣的读者可查看本站专题:《MySQL查询技巧大全》、《MySQL常用函数大汇总》、《MySQL日志操作技巧大全》、《MySQL事务操作技巧汇总》、《MySQL存储过程技巧大全》及《MySQL数据库锁相关技巧汇总》
希望本文所述对大家MySQL数据库计有所帮助。
test1 在
opencode + Oh-my-openagent,我的第一个免费的ai编程智能体管家:Sisyphus中评论 test..122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..Zita 在
Google AI Studio升级全栈 vibe coding体验,可直接构建带登录和数据库的应用中评论 111222..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号
