0
我有這個疑問:SQL查詢得到的價格爲第二最晚日期
select @cost = @cost +
(select top 1 price from
(select top 2 price, date from myTable order by date DESC)
order by date ASC
)
而且我得到錯誤:關鍵字「順序」附近有語法錯誤。 如何解決這個問題?