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

sql面试题

时间:2019-07-09 16:43:36      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:style   填充   str   col   连接   nbsp   数据   区别   sel   

1.左连接、右连接、内连接的区别

  select a.*,b.* from tablea a left join tableb b on a.id=b.pid;   左连接是以a表为基础,去匹配b表的数据,有则填充数据,没有填充null

  select a.*,b.* from tablea a right join tableb b on a.id=b.pid;  右连接是以b表为基础,去匹配a表的数据,有则填充数据,没有填充null

  select a.*,b.* from tablea a inner join tableb b on a.id=b.pid;  内连接是去两张表匹配两个id相等的数据

sql面试题

标签:style   填充   str   col   连接   nbsp   数据   区别   sel   

原文地址:https://www.cnblogs.com/8013-cmf/p/11158289.html

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