我在数据访问层使用休眠,
所以我必须为以下 SQL 查询编写 HQL 查询。
select * from MyTable where my_date >= '16-SEP-2012'
它工作正常.. 为此,我编写了 HQL 查询,如下所示,
从 MyTable 作为 NB where NB.my_date >=date
它抛出一个错误..
从 MyTable as NB where NB.my_date >=Mon Mar 07 00:00:00 IST 1 org.hibernate.hql.ast.QuerySyntaxException:意外令牌:Mar
如何为此编写 HQL 查询.. 有什么想法吗?