5
我正在使用SQL Server 2008 R2。如何使用分區和按功能排序?
我想編寫一個查詢顯示如下:
select productname, unitprice,categoryid, sum(unitprice)
over (partition by categoryid order by unitprice desc) As PriceSum
from Products
我想要的結果訂購由所在單位價格的產品,同時通過其類別劃分的產品。我得到這個錯誤:Incorrect syntax near 'order'.
我做錯了什麼?