Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 HSQL 创建一个应用程序。现在我需要使用某个特定的日期 - 获取所有记录yyyy-MM-dd,但该列是时间戳日期类型 - yyyy-MM-dd-HH.mm.ss.ffffff。
yyyy-MM-dd
yyyy-MM-dd-HH.mm.ss.ffffff
我将如何编写一个 HSQL / JPA 查询来使用时间戳字段从表中选择使用给定日期的所有记录?
我是 HSQL 和 JPA 的新手。我没有任何线索。
select * from your_table where cast(datetime_column as date) = '2012-04-14'
对于 HSQLDB 2.2.8,WHERE datetime_column >= the_date AND datetime_column < the_date + 1在 JPQL 查询中使用,以便 datetime_column 上的索引用于查询。
WHERE datetime_column >= the_date AND datetime_column < the_date + 1