Wetts's blog

Stay Hungry, Stay Foolish.

0%

MySQL-语法-using()

using() 用于两张表的 join 查询,要求 using() 指定的列在两个表中均存在,并使用之用于 join 的条件。

示例:

1
select a.*, b.* from a left join b using(colA);

等同于:

1
select a.*, b.* from a left join b on a.colA = b.colA;