0
主表:Select * from Table1
如何獲得只有從三個表的匹配數據
Id Name1 Name2
101 ttt sss
二表:Select * from Table2
SId Id Colum1 Column2 Column3
1 101 hhh xxx erre
2 101 wsa tgf fdfd
三表:Select * from Table3
TId Id TColumn1 Tcolumn2
5 101 uyt uyu
我的查詢:
Select * from Table1 t1
Join Table2 t2 on t2.Id= t1.Id
Join Table3 t3 on t3.Id= t1.Id
我喜歡這個
Id Colum1 Column2 Column3 TColumn1 Tcolumn2
1 hhh xxx erre uyt uyu
2 wsa tgf fdfd uyt uyu
geeting數據我想是我的數據
Id Colum1 Column2 Column3 TColumn1 Tcolumn2
1 hhh xxx erre uyt uyu
2 wsa tgf fdfd null null
DId你已經嘗試使用「左外連接」而不是「連接」? – Tyron78
規則是 - 除了第一行之外,總是有NULL的? – DhruvJoshi