Sql Server中一個表2個字段聯系關系統一個表(代碼處理)。本站提示廣大學習愛好者:(Sql Server中一個表2個字段聯系關系統一個表(代碼處理))文章只能為提供參考,不一定能成為您想要的結果。以下是Sql Server中一個表2個字段聯系關系統一個表(代碼處理)正文
select a.man_id,man_name,d.sex_name,zw_name,c.money
from man as a
left join zw as b on a.zw_id=b.zw_id
left join zw as c on a.man_id=c.man_id -- 同時聯系關系zw字段,經由過程表別號差別開
left join xb as d on c.sex_id=d.sex_id