所以我有一個表,如下所示 Person Currency Price
Steve GBP 10
Steve GBP 20
Steve EUR 30
Dave USD 10
Dave USD 10
Dave EUR 20
John EUR 30
John GBP 20
John USD 30
我想有基於自己有多麼的貨幣花
當我想要執行SQL查詢時出現以下錯誤: 「Msg 209,Level 16,State 1,Line 9 歧義列名'i_id'。」 這是SQL查詢我要執行: SELECT DISTINCT x.*
FROM items x LEFT JOIN items y
ON y.i_id = x.i_id
AND x.last_seen < y.last_seen
WHERE x.last_seen
我已經在vb.net寫了一個查詢,以顯示在水晶報表,但一個列名Customer.Name顯示在報告中都排在這裏我的查詢和代碼 Dim rpt As New rptSales2 'The report you created.
Dim myConnection As SqlConnection
Dim MyCommand, MyCommand1 As New SqlComma