在我的表1,它可以有,並已在地址欄空項對應的記錄或沒有在表2中 匹配的條目,我要提供的所有記錄在表1中還列出了表2中的相應條目。我的結果是我試圖實現的。返回所有記錄,而不管是否有匹配
Table 1
ID First Last
1 John Smith
2 Bob Long
3 Bill Davis
4 Sam Bird
5 Tom Fenton
6 Mary Willis
Table 2
RefID ID Address
1 1 123 Main
2 2 555 Center
3 3 626 Smith
4 4 412 Walnut
5 1
6 2 555 Center
7 3
8 4 412 Walnut
Result
Id First Last Address
1 John Smith 123 Main
2 Bob Long 555 Center
3 Bill Davis 626 Smith
4 Sam Bird 412 Walnut
5 Tom Fenton
6 Mary Willis
你如何加入你的兩張桌子?我從你的例子結果中推斷出Table1中的RefId是Table1中Id的外鍵?如果是這種情況,那麼@ Nicholai的答案將起作用。 Table2中的Id列是指什麼? –