2

我在编写 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)

提前致谢

4

1 回答 1

1

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

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

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

在 SQL 中检查这个例子,它也应该适用于 HQL。

于 2013-11-25T19:13:05.690 回答