Hibernate语法中的间隔

时间:2012-04-03 08:21:56

标签: hibernate hql

我想查询Hibernate中的下一句话:

from Attribute where tDate between ((select max(tDate) from Attribute)-interval '5 minutes') and (select max(tDate) from Attribute)

但是,HQL不了解间隔。我怎么能这样做?

谢谢!

1 个答案:

答案 0 :(得分:3)

Hibernate没有interval关键字。

您可以重写查询以使用between关键字,也可以使用本机查询