This code give me a list of two items Datetime and count. But I need group it by date without time.
Can anyone give me a clue how to do it? Thanks!
Criteria criteria = getSession().createCriteria(Parcel.class);
ProjectionList projectionList = Projections.projectionList();
projectionList.add(Projections.groupProperty("dateCreated"));
projectionList.add(Projections.rowCount());
criteria.setProjection(projectionList);
List<Object[]> results = criteria.list();
Result:
2013-04-27 11:08:00.0 | 32
2013-04-27 11:10:00.0 | 5
2013-04-28 15:03:27.0 | 12
I need:
2013-04-27 | 37
2013-04-28 | 12
You may find Projections#sqlGroupProjection method useful. It allows you to employ an SQL function date()
that extracts Date
form a DateTime
column. Basically, instead of calling
projectionList.add(Projections.groupProperty("dateCreated"));
use
projectionList.add(Projections.sqlGroupProjection("date(dateCreated) as createdDate", "createdDate", new String[] { "createdDate" }, new Type[] { StandardBasicTypes.DATE }));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With