Hql クエリを作成する際に問題に直面しています。
MyTable という名前の mysql テーブルがあり、列名は Id 、Column1、Column2 および Type です。すべてのフィールドは整数型です。
選択クエリは、[タイプ] 列の値に基づいています。「タイプ」列の値が列 0
1 の選択クエリ ベースの値である場合。type 列の値が の場合1
、select クエリは 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)
前もって感謝します