有关HQL 分组查询。按天分组
现在有一张表,里面有个createTime的Date类型的字段。
我怎么用group by 去按天来统计每天的记录数?
怎么去写这个hql语句。
[解决办法]
只是统计记录数?
select t.createTime,count(t) from TABLE t group by t.createTime
[解决办法]
String hql=" t.createTime ,count(t) from ClassTableName t group by t.createTime";