服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - 数据库技术 - sql语句创建外键关联的完整实例

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

2021-12-09 16:19赵博林 数据库技术

这篇文章主要给大家介绍了关于sql语句创建外键关联的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

以创建学生教师表为例: 学生 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

延伸 · 阅读

精彩推荐