mysql中left join多表聯查詢語句

來源:互聯網
上載者:User

最初我們用天最多的如果沒用left join我們就會如

 代碼如下 複製代碼

select c.nom, e.nom  
from consultant c, affaire a, besoin b, salarie sa, site s, entreprise e 
where c.consultant_id=a.consultant_id and a.besoin_id=b.besoin_id and  
b.salarie_id=sa.salarie_id and ssa.site_id=s.site_id and s.entreprise_id=e.entreprise_id 

上面的寫法不好同時也不如left join效綠好

left join

 代碼如下 複製代碼

SELECT
A.ID, A.NUMBER, A.PRICE, A.ORDER_TIME, B.USER_ID, B.STARTIME, B.STOPTIME,
C.CHANNEL_PAY, D.COMPANY
FROM
D表 D
LEFT JOIN
A表 A ON A.COMPANY_ID = D.UID
LEFT JOIN
B表 B ON B.COMPANY_ID = D.UID
LEFT JOIN
C表 C ON C.COMPANY_ID = D.UID
有條件的再加行:
WHERE ……….
排序(如A表的ID由大到小排):
ORDER BY A.ID DESC

多表聯查的還可用inner join方法

 代碼如下 複製代碼

select c.nom, e.nom  from consultant c  inner join affaire a on c.consultant_id=a.consultant_id  inner

join besoin b on a.besoin_id=b.besoin_id  inner join salarie sa on b.salarie_id=sa.salarie_id  inner

join site s on ssa.site_id=s.site_id  inner join entreprise e on s.entreprise_id=e.entreprise_id 

注意

多表聯集查詢有好多總方式right join、inner join、full join這裡不一一介紹了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.