我有一個表1與一對多的關係表2 表1還具有一個與表中的許多關係3左外連接到兩個表
我想要的連接的結果相結合但所有IM重複獲取值
這裏的結構:
table 1
reportnumber
1
2
3
table 2
reportnumber col1
1 a
1 b
2 c
3 a
table 3
reportnumber col2
1 x
1 y
1 z
2 w
預期的結果集
reportnumber col1 col2
1 a x
1 b y
1 z
2 c w
3 a
我敢肯定,這是可能的左外連接,但我不能得到正確的語法
任何線索?
這是結果是什麼我嘗試
select * from table1 a
left outer join table2 b on a.reportnumber=b.reportnumber
left outer join table3 on a.reportnumer=c.reportnumber
但是這樣
reportnumber col1 col2
1 a x
1 a y
1 a z
1 b x
1 b y
1 b z
...
你指出,你不能得到語法正確,你應該與你試圖查詢編輯您的帖子。 – Taryn
此外,不正確的結果集可能會幫助 – jaywayco