Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CriteriaQuery month and year filter

I'm trying to make a criteria query (JPA/Hibernate)in a model which contain one column with date (Oracle 11G) . For example, i have

  1. 13-JAN-09
  2. 15-JAN-09
  3. 16-MAR-09

And my function is like:

public MyEntity getEntitiesFromCertainFilters(int a, int b, java.util.date c)
{
    CriteriaBuilder builder = entityManager.getCriteriaBuilder();
    CriteriaQuery< MyEntity > query = builder.createQuery(MyEntity.class);
    Root< MyEntity > root = query.from(MyEntity.class);

    query.select(root).where (
        builder.equal ( root.get ( "id" ).get ( "codEstablec" ) , establecimiento),
        builder.equal ( root.get ( "id" ).get ( "correlGrupo" ) , correlGrupo),
        //HERE I NEED TO ADD FILTER BY C.MONTH AND C.YEAR FROM THE DATE ATTRIBUTE
        );

    List < MyEntity > resultList = entityManager.createQuery(query).getResultList();  
    return resultList.get(0);
}

If i want to filter by c = "01-JAN-09", it should return:

  1. 13-JAN-09
  2. 15-JAN-09

Any help would be really appreciated, thanks in advance.

like image 880
Rcordoval Avatar asked Feb 13 '17 19:02

Rcordoval


2 Answers

You can use the builder.function method. E.g.

query.select(root).where (
    builder.equal ( root.get ( "id" ).get ( "codEstablec" ) , establecimiento),
    builder.equal ( root.get ( "id" ).get ( "correlGrupo" ) , correlGrupo),
    builder.equal(builder.function("YEAR", Integer.class, root.get("DATE_FIELD") ), C.YEAR),
    builder.equal(builder.function("MONTH", Integer.class, root.get("DATE_FIELD")), C.MONTH) 
    );
like image 126
tharanga-dinesh Avatar answered Sep 16 '22 15:09

tharanga-dinesh


I assume you're getting your date values like this question.

Rather than making a messy query comparing individual parts of dates, just create two encompassing queries.

Date c; //this is your provided date.
Date d; //this is your endpoint.

d = new Date(c.getTime());
d.setMonth(d.getMonth()+1); // creates 01FEB09

From then, all you need to do is find dates GREATERTHANOREQUALTO c and LESSTHAN d.

like image 45
Compass Avatar answered Sep 18 '22 15:09

Compass