gpt4 book ai didi

java - HQL:选择语句以及使用 'case when then' 给出意外的 token 错误

转载 作者:行者123 更新时间:2023-11-30 11:33:09 24 4
gpt4 key购买 nike

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

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

选择查询基于“类型”列中的值。如果“类型”列中的值为 0然后是 Column1 中基于选择查询的值。如果类型列中的值为 1,则选择查询将基于 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)

提前致谢

最佳答案

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

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。

关于java - HQL:选择语句以及使用 'case when then' 给出意外的 token 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16214729/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com