Using HQL to query on a date while ignoring the time on Oracle

后端 未结 4 1078
暖寄归人
暖寄归人 2020-12-06 04:59

I have a table (in Oracle 9 and up) where I need to find all entries for a given day using Hibernate. The entries have timestamps (with data type \'date\'). Some of the entr

相关标签:
4条回答
  • 2020-12-06 05:42

    I think there are two ways to solve this:

    1. Use a criteria query and add a SQLRestriction. The restriction would take the form "trim({alias}.date) = ?". A problem here could be the conversion of the input parameter to the correct type on Oracle (or other DBMS). You can provide the necessary (hibernate) type as parameter, but if this is database dependent, it will be hardcoded.

    2. use a formula in your hibernate mapping. The mapping would be:

        <class name="Person">
          <property name="birthDay" formula="trim(birthDay)"/>
        </class>

    You can now use Hibernate's typing system to use a compare with a java object like this:

    s.createCriteria(Person.class)
     .add(Restrictions.eq("birthDay", new java.sql.Date(System.currentTimeMillis())))
     .list()
    

    One problem you'll have with both solutions is the trim function might not be available in the database. A solution for this (e.g. while testing on HSQLDB) is to put a import.sql on your classpath test (this will be picked up by Hibernate automatically) and create a procedure or function there. You can also Alter table Person add column birthDay timestamp in that file to make the generated schema work.

    0 讨论(0)
  • 2020-12-06 05:49

    you can use the trunc() function to remove the time part in the DATE column.

    eg : select * from emp where trunc(emp_date) < trunc(current_date()-30)

    fetches all the employee details who were employed 1 month before

    0 讨论(0)
  • 2020-12-06 05:51

    For CustomHQL, you can try the trunc keyword

    For Ex:

    SELECT T0.FirstName as FirstName ,T0.LastLoginDate as LastLoginDate  FROM User T0
    WHERE (trunc(T0.LastLoginDate) >= :LastLoginDate) ORDER BY T0.LastLoginDate 
    

    NOTE: Where :LastLoginDate is a Parameter.

    This does the trick for me.

    0 讨论(0)
  • 2020-12-06 06:03

    You could put two constraints into your HQL, one that specifies greater than or equal to the start of the date you are searching on, and one that specifies less than the next day.

    i.e.

    table.date >=11.06.2009 AND table.date < 11.07.2009
    

    HQL (as well as SQL) also allows for:

    table.date between 11.06.2009 AND 11.07.2009
    

    Keep in mind between is always inclusive, meaning it's both >= and <= respectively.
    More details on between here: http://www.coding-dude.com/wp/java/hibernate-java/hibernate-hql-between-expression/

    0 讨论(0)
提交回复
热议问题