mysql的left join、right join、inner join
A加油卡表:
id, userName, cardNo
1aaa111
2bbb111
3aaa222
B加油记录表:
id, number,userName ,cardNo,
11234aaa111
2234bbb111
left join:select * from Bbleft joinA a on a.userName = b.userNamewhere b.userName=aaa由于上面sql中,on后面的条件,userName在A表中对应多条,而不是对应一条,结果集就是笛卡尔积。B表中的1条满足剩余A表中的2条满足。结果为2条。select * from Bbleft joinA a on a.userName = b.userNameand a.cardNo = b.cardNowhere b.userName=aaa由于上面sql中,on后面的两个条件在A表中只能找到一条唯一数据,所以结果就是B表中有多少条数据满足where,结果集就返回多少条数据。这里是返回一条数据
right join:
下面这个sql与上面的left join效果一样:select * from Aaright joinB b on a.userName = b.userNameand a.cardNo = b.cardNowhere b.userName=aaainner join:select * from AainnerjoinB b on a.userName = b.userNameand a.cardNo = b.cardNowhere a.userName=aaa还是首先看on后面的条件,如果A表中的一条数据对应on的两个条件在B中只有一条数据,则返回满足where条件的2条数据。select * from BbinnerjoinA a on a.userName = b.userNameand a.cardNo = b.cardNowhere a.userName=aaa以上总结一条:看on后面的条件,在被关联表中的数据是一条还是多条。
更多相关问题请访问PHP中文网:mysql视频教程以上就是mysql的left join、right join、inner join的详细内容,更多请关注小潘博客其它相关文章!