服务器之家

服务器之家 > 正文

sql语句创建外键关联的完整实例

时间:2021-12-09 16:19     来源/作者:赵博林

以创建学生教师表为例: 学生 id 关联教师 tid

学生表: student

sql语句创建外键关联的完整实例

教师表: teacher

sql语句创建外键关联的完整实例

sql语句 :

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use school;
 
create table student(
id int(10) not null primary key,
name varchar(30) default null,
tid int(10) default null,
key `fktid` (`tid`),
constraint `fktid` foreign key(`tid`) references `teacher` (`id`)
)engine=innodb default charset=utf8
 
insert into student values(1,'小明',1);
insert into student values(2,'小红',1);
insert into student values(3,'小刚',1);
insert into student values(4,'小王',1);
insert into student values(5,'小智',1);
 
select * from student;
 
create table teacher (
id int(10) primary key not null,
name varchar (30) default null
)engine=innodb default charset=utf8
 
 
insert into teacher values(1,'陈老师');
select * from teacher;

重点: 外键关联语句,会手写才可以!

?
1
2
key `fktid` (`tid`),
constraint `fktid` foreign key(`tid`) references `teacher` (`id`)

总结

到此这篇关于sql语句创建外键关联的文章就介绍到这了,更多相关sql创建外键关联内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/SoULikeMe/article/details/113368984

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部