1

我有那两张桌子

id | name |
___________
 1 | John |
 2 | Mike |

id | id_name1 | id_name2
________________________
 1 |     2    |    1
 2 |     1    |  null

第一个表的主键是第二个表中的 ID,我有两个外键 ID_NAME1 和 ID_NAME2,它们引用第一个表的主键。使用后

SELECT table1.name, table2.id FROM table1 NATURAL JOIN table 2

我明白了

John 1
John 2
Mike 1
Mike 2

但我想要

John 1
John 2
Mike 2

我究竟做错了什么?

4

1 回答 1

1

你不需要natural join你期望的我猜是:

http://sqlfiddle.com/#!9/c9b1d/7

SELECT table1.name, table2.id
FROM table1
LEFT JOIN table2
ON table1.id = table2.id_name1
  OR table1.id = table2.id_name2
  ORDER BY table1.id,table2.id 
于 2015-04-19T16:37:51.207 回答