日期:2014-05-17 浏览次数:20466 次
SELECT
人员编号 = a.住户编号, --注意:这里只显示了住户的编号
业主名称 = b.人员名称,
住户名称 = c.人员名称
FROM table1 a
LEFT JOIN table2 b
ON a.业主编号 = b.人员编号
LEFT JOIN table2 c
ON a.住户编号 = b.人员编号
SELECT
a.单元名称,
业主名称 = b.住户名称,
a.业主编号,
住户名称 = c.住户名称,
a.住户编号
FROM table1 a
LEFT JOIN table2 b
ON a.业主编号 = b.住户编号
LEFT JOIN table2 c
ON a.住户编号 = b.住户编号
SELECT
a.单元名称,
业主名称 = b.住户名称,
a.业主编号,
住户名称 = c.住户名称,
a.住户编号
FROM table1 a
LEFT JOIN table2 b
ON a.业主编号 = b.住户编号
LEFT JOIN table2 c
ON a.住户编号 = c.住户编号
SELECT a.单元名称,
业主名称 = (select 住户名称 from table2 where a.业主编号 = 住户编号)
a.业主编号,
住户名称 = (select 住户名称 from table2 where a.住户编号 = 住户编号)
a.住户编号
FROM table1 a