can we group by day of the week using hibernate?

a 夏天 提交于 2019-11-28 06:08:40

问题


I want the query results to be grouped by day of the week .. like into 7 groups Monday, Tuesday, Wednesday... etc one for each

the column in the table is a timestamp field like 12-Mar-2011 ..... so I don't care which dates exist in the table I just need to get 7 groupings and if there is a count column which doesnt exist for like thursday it should return 0 and for wednesday the count should the total counts for all wednesday and like wise for each day of the week.

How do I mplement this query with HQL/criteria?

Is there a built in clause like this that I can use in Hibernate (HQL/Criteria)?

Thanks in advance.


回答1:


Try this one:

select dayofweek(dateField), count(*)
from PersistentClass
group by 1



回答2:


Did you try 'order by' clause?

Smth like this:

FROM tableName as table
ORDER BY table.dayOfWeek ASC

In what form you store your data?



来源:https://stackoverflow.com/questions/10222370/can-we-group-by-day-of-the-week-using-hibernate

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!