HQL:选择语句以及使用“case when then”给出意外的令牌错误

Posted

技术标签:

【中文标题】HQL:选择语句以及使用“case when then”给出意外的令牌错误【英文标题】:HQL: select statement along with using 'case when then' giving unexpected token error 【发布时间】:2013-04-25 12:25:25 【问题描述】:

我在编写 Hql 查询时遇到问题。

我有一个名为 MyTable 的 mysql 表,其列名称为 Id、Column1、Column2 和 Type。所有字段都是整数类型。

选择查询基于“类型”列中的值。如果“类型”列中的值为0 然后在 Column1 中选择基于查询的值。如果类型列中的值为1,则选择查询将基于列2中的值。

我已经使用“case when then”成功编写了查询。但是作为 Hql 查询使用时,相同的查询会出现异常

SQL 查询:

select * from  MyTable where case when Type=0 then Column1=234 when Type=1 then       Column2=564 end;

HQL 查询:

from MyTableObj obj where case when obj.type=0 then obj.column1=234 when obj.type=1 then obj.column2=564 end; 

给出以下错误,

 17:30:16,197 ERROR [PARSER] line 1:127: unexpected token: =
 17:30:16,198 ERROR [PARSER] line 1:134: unexpected token: end
 17:30:16,199 WARN  [HqlParser] processEqualityExpression() : No expression to process!
 org.hibernate.hql.ast.QuerySyntaxException: unexpected token: = near line 1, column 127 [from MyTableObj obj where case when obj.type=0 then obj.column1=234 when obj.type=1 then obj.column2=564 end]
    at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:54)
    at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:47)
    at org.hibernate.hql.ast.ErrorCounter.throwQueryException(ErrorCounter.java:82)
    at org.hibernate.hql.ast.QueryTranslatorImpl.parse(QueryTranslatorImpl.java:281)
    at org.hibernate.hql.ast.QueryTranslatorImpl.doCompile(QueryTranslatorImpl.java:180)
    at org.hibernate.hql.ast.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:134)
    at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:101)
    at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:80)
    at org.hibernate.engine.query.QueryPlanCache.getHQLQueryPlan(QueryPlanCache.java:94)
    at org.hibernate.impl.AbstractSessionImpl.getHQLQueryPlan(AbstractSessionImpl.java:156)
    at org.hibernate.impl.AbstractSessionImpl.createQuery(AbstractSessionImpl.java:135)
    at org.hibernate.impl.SessionImpl.createQuery(SessionImpl.java:1650)

提前致谢

【问题讨论】:

我遇到了同样的错误。你找到解决办法了吗? @Heisenberg 。对不起,我差点忘了上下文。它发生在 3 年前。顺便说一句,海森堡先生,你的药品生意怎么样? :) 【参考方案1】:

我做了类似的事情,但是条件的值是相同的,唯一会根据数据库中的某个值而变化的是列。 这是一个例子:

SELECT t.* FROM table t
WHERE CASE WHEN t.column1 = 1
   THEN t.column2
   ELSE t.column3
END = 123;

这对我有用。如果您希望您的值(在我的示例中为 123)依赖于像列这样的条件,您也可以使用 CASE 语句。

检查this example in SQL,它也应该适用于 HQL。

【讨论】:

它对我不起作用-错误:org.hibernate.hql.internal.ast.ErrorCounter - 第 1:270 行:期待“结束”,发现 '=' 错误:org.hibernate.hql。 internal.ast.ErrorCounter - 第 1:270 行:期待“end”,找到 '=' 第 1:270 行:期待“end”,找到 '='

以上是关于HQL:选择语句以及使用“case when then”给出意外的令牌错误的主要内容,如果未能解决你的问题,请参考以下文章

HQL的执行过程

[Hibernate] 通过 properties 类和 hql 语句进行动态查询

hql语句cast用法详解下

hql语句cast用法的详解?

sql语句和hql语句的区别?

hibernate的三种查询方式