数据库各种连接的区别

数据库各种连接区别:
left join,right join,inner join(join)
left join与right join之间是相对的:
基本的例子:select * from table1 t1 left join table2 t2 on t1.col1 = t2.col2;
这个时候查出来的结果是:table1 的全部集合,table2的部分集合
如果想查找table2的全部集合:则可以使用right join:
select * from table1 t1 right join table2 t2 on t1.col1 = t2.col2;
inner join 与join是相同的,查找的是两个表的交集。
select * from table1 t1 inner join table2 t2 on t1.col1 = t2.table2 where t1.id = 1;

你可能感兴趣的:(数据库)