我在使用SQL Server進行分組時遇到問題。在SQL Server中按日期分組
我有一個datetime
列,但我只能根據日期要組,
這裏是我的代碼
SELECT ProductCode,
ProductName,
ProductType,
UnitPrice,QTY,
Amount,
(convert(varchar, TransactionDate, 101))AS sTransactionDate
FROM DailyTransactions
GROUP BY TransactionDate, ProductCode,
ProductName,ProductType,UnitPrice,QTY,Amount
結果:
2/17/2012
出現了三次,因爲它有不同的時間...