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

MySQL多表查询回顾

时间:2017-08-07 22:05:33      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:多表   sel   from   写法   image   ott   rom   images   span   

----------------------siwuxie095

   

   

   

   

   

   

   

   

MySQL 多表查询回顾

   

   

以客户和联系人为例(一对多)

   

   

1、内连接

   

技术分享

   

   

/*内连接写法一*/

select * from t_customer c,t_linkman l where c.cid=l.clid

   

/*内连接写法二(inner 可以省略不写)*/

select * from t_customer c inner join t_linkman l on c.cid=l.clid

   

   

   

2、左外连接

   

技术分享

   

   

/*左外连接(outer 可以省略不写):左表的所有数据,右表的关联数据*/

select * from t_customer c left outer join t_linkman l on c.cid=l.clid

   

   

   

3、右外连接

   

技术分享

   

   

/*右外连接(outer 可以省略不写):右表的所有数据,左表的关联数据*/

select * from t_customer c right outer join t_linkman l on c.cid=l.clid

   

   

   

   

   

   

   

   

【made by siwuxie095】

MySQL多表查询回顾

标签:多表   sel   from   写法   image   ott   rom   images   span   

原文地址:http://www.cnblogs.com/siwuxie095/p/7301143.html

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