mysql三表關聯查詢

魚sama發表於2019-03-21

條件: a,b,c三張表,a表裡面有b,c表的主鍵

三張表,需要得到的資料是標紅色部分的。sql如下: 

方法一: 內連線

select a.uid,a.uname,a.upsw,a.urealname,a.utel,a.uremark, b.rid,b.rname,b.rremark,c.deptid,c.deptname,c.deptremark

from table1 a,table2 b,table3 c 
where a.sems_role_rid=b.rid 
and a.udeptid=c.deptid ;

方法二:左連線

select a.uid,a.uname,a.upsw,a.urealname,a.utel,a.uremark, b.rid,b.rname,b.rremark,c.deptid,c.deptname,c.deptremark
from table1 a 
left join table2 b on  a.sems_role_rid=b.rid 
left join table3 c on a.udeptid=c.deptid ;

LEFT JOIN 可以實現統一資料庫多表聯合查詢符合條件的資料。 

 

更多查詢參考:https://blog.csdn.net/weixin_42576112/article/details/80899313

Mysql 多表連線查詢參考:https://blog.csdn.net/qq_35723367/article/details/80233040

相關文章