MySQL join 用法
Posted FireC@t @ Perl6
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL join 用法相关的知识,希望对你有一定的参考价值。
select column1, column2 from TABLE1 join TABLE2 on 条件 # select * from table1 join table2; #两个表合成一个
select a.*, b.* from a left join b where a.id=b.id limit 0,1;
on 条件 where/ group by / having/ 除了on的条件, 还能加where等条件
除了join还有:
left join 左表为准
right join 右表为准
inner join 交集
用法差不多
以上是关于MySQL join 用法的主要内容,如果未能解决你的问题,请参考以下文章
定义13: mysql left join,right join,inner join用法分析
超详细mysql left join,right join,inner join用法分析