Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hibernate criteria group by date without time

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

like image 206
user347 Avatar asked May 04 '13 11:05

user347


1 Answers

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 }));
like image 52
skuntsel Avatar answered Sep 22 '22 07:09

skuntsel