MySQL JOIN USING()用法

來源:互聯網
上載者:User

1 using()用於兩張表的join查詢,要求using()指定的列在兩個表中均存在,並使用之用於join的條件。  樣本: select a.*, b.* from a left join b using(colA); 等同於: select a.*, b.* from a left join b on a.colA = b.colA;
2 多表查詢就使用多個這樣的join。 樣本: select a.*, b.* from a left join b using(colA) left join c using(colB); 要求colA在a, b中均存在,colB在a, c表中均存在。
總之,using() 只是join中指定串連條件的簡寫,在簡單的串連中常用。在列名稱不同時或串連條件複雜時就無法用了,使用 a left join b on ... 是更常見的做法。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.