J'ai un problème avec le regroupement dans SQL Server.
J'ai un datetime
mais je veux grouper uniquement par date,
Voici mon code
SELECT ProductCode,
ProductName,
ProductType,
UnitPrice,QTY,
Amount,
(convert(varchar, TransactionDate, 101) )AS sTransactionDate
FROM DailyTransactions
GROUP BY TransactionDate, ProductCode,
ProductName,ProductType,UnitPrice,QTY,Amount
RÉSULTAT :
2/17/2012
apparaît trois fois parce qu'il a des temps différents ...