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

sql语句之多表查询

时间:2018-03-14 12:53:05      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:右连接   sql   strong   mysql   保留   sel   employee   内连接   union   

 

内连接

select * from employee inner join department on employee.dep_id = department.id

 

左连接  在内连接的基础上保留左表记录

select * from employee left join department on employee.dep_id = department.id

 

右连接  在内连接的基础上保留右表记录

select * from employee right join department on employee.dep_id = department.id

 

全外连接

mysql不支持full join。若要实现该效果,可用下面语句实现:

select * from employee left join department on employee.dep_id = department.id union

select * from employee right join department on employee.dep_id = department.id

sql语句之多表查询

标签:右连接   sql   strong   mysql   保留   sel   employee   内连接   union   

原文地址:https://www.cnblogs.com/stin/p/8566228.html

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