我在编写Hql查询时遇到了一个问题。
我有一个名为MyTable的mysql表,其列名为Id,Column1,Column2和Type。所有字段都是整数类型。
选择查询基于“类型”列中的值。如果“类型”列中的值为0
然后在Column1中选择基于查询的值。如果type列中的值为1
,则select query将基于column2中的值。
我使用“case when then”编写了SQL查询成功。但是当用作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)
先谢谢
答案 0 :(得分:1)
我做了类似的事情,但是条件的值是相同的,唯一根据DB中的某个值而改变的是列。 这是一个例子:
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。