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

MySQL多表连接操作

时间:2018-12-23 22:05:11      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:div   多表   多表连接   inf   内连接   info   use   HERE   inner   

1 select * from userinfo ,dapartment where userinfo.part_id = dapartment.id;
2      --左连接: 左边全部显示
3      select * from userinfo left join dapartment on userinfo.part_id=dapartment.id;
4      --右连接:右边的全部显示
5      select * from userinfo right join dapartment on userinfo.part_id=dapartment.id;
6      --内连接: 将出现null的一行隐藏
7      select * from userinfo inner join dapartment on userinfo.part_id = dapartment.id;

 

MySQL多表连接操作

标签:div   多表   多表连接   inf   内连接   info   use   HERE   inner   

原文地址:https://www.cnblogs.com/tataerzu/p/10165550.html

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