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

mysql连表查询

时间:2017-02-09 18:57:20      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:连接   where   sql   join   select   也会   外连接   返回   null   

 select * from test1 a,test2 b where a.no=b.no;;内连接

 select * from test1 a left join test2 b on a.id=b.id;左外连接

  select * from test1 a right join test2 b on a.id=b.id;右外连接(和左连接的区别是左连接是以左边为主表,会把左边为Null也输出,右连接相反) 

内连接和外连接的区别是内连接只匹配符合条件的项,外连接为Null也会返回

 

 

mysql连表查询

标签:连接   where   sql   join   select   也会   外连接   返回   null   

原文地址:http://www.cnblogs.com/yzjT-mac/p/6383356.html

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