数据表如上所示,请问大侠,如何根据日期统计“消费金额”的在当天的总和?并根据每一天来分组显示出来 ------最佳解决方案-------------------- select sum(消费金额)消费金额,convert(varchar(20),CreateTime,112)CreateTime from 表 group by convert(varchar(20),CreateTime,112) ------其他解决方案-------------------- 楼上正解 ------其他解决方案-------------------- select sum(消费金额) from 表 where convert(varchar(20),CreateTime,112)= convert(varchar(20),getdate(),112) ------其他解决方案--------------------