我有一個表,如:彙總/計數行
Create Table SalesTable
(StuffID int identity not null,
County geography not null,
SaleAmount decimal(12,8) not null,
SaleTime datetime not null)
它有量,時間每銷售的記錄,和縣,出售發生的地理在
我想運行這樣的查詢:
Select sum(SaleAmount), County from SalesTable group by County
但如果我嘗試這樣做,我得到:
The type "geography" is not comparable. It cannot be used in the GROUP BY clause.
但是我想知道每個縣有多少銷售額。令人煩惱的是,如果我將縣級縮寫(SDC,LAC,SIC等),那麼我可以將它們分組,因爲它只是一個varchar。但由於其他原因,我使用了地理數據類型。