0

我正在尝试在我的 EJB 查询中实现 dateadd。我尝试了这样的事情,但它不起作用:

select t.date + 1 from Table t

一旦我尝试执行该代码,就会出现此异常:

org.hibernate.exception.SQLGrammarException: ERROR: operator does not exist: timestamp without time zone + integer Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts. Position: 93

我还尝试将 1 转换为日期和间隔,但查询结果仅为空。我只是想知道,是否真的可以在 EJB 查询中的给定日期添加天数

4

1 回答 1

1

EJBQL 不支持日期算术,也不可能从日期中提取日期,JPQL 也不支持。

根据 JPA 提供者(Hibernate、EclipseLink 等),可能会有有用的供应商特定扩展和调用数据库函数的可能性。例如可以使用EclipseLink FUNC 。

于 2013-01-31T18:14:51.993 回答