where子句可能的不同日期?

时间:2012-06-28 18:30:03

标签: sql-server

是否可以在SQl Server 2005中获取每个不同日期的记录?

示例:

Select sum(AmountSold), Date from tableA where Distinct(Date)

这样的事情可能吗?在此先感谢!!

拉​​姆!

1 个答案:

答案 0 :(得分:3)

SELECT SUM(AmountSold), Date 
FROM tableA
GROUP BY Date