手机打字,错字见谅
左连接(left join):
table1 left join table2 where table1.a = table2.a and table1.a = “123”;
意思是说,先通过第二个条件查出table1中的满足条件的row数据条数n条,查出的n条数据再left join table2 通过第一个条件连接起来,查出的数据条数任为n条
右链接(right join):
table1 right join table2 where table1.a = table2.a and table1.a = “123”;
同理,查出数据的条数和table2查出的数据条数相同
全链接(full join):
table1 full join table2 where table1.a = table2.a and table1.a = “123”;
先通过第二个条件查出table1和table2的数据,然后通过第一个条件全部连接
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有