0
對於下面的查詢,執行SQL JOIN表上
SELECT columnA
FROM XYZ JOIN XDE
ON XYZ.columnA=XDE.columnA
我得到這個錯誤,
Msg 209, Level 16, State 1, Line 1
Ambiguous column name 'columnA'.
其中XYZ和XDE是表名,
爲什麼它不能在SQL Server 2005中工作?