mysql三張表關聯查詢

l_215851356發表於2018-10-12

mysql三張表關聯查詢

三張表,需要得到的資料是標紅色部分的。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://www.cnblogs.com/vanl/p/5472812.html

相關文章