SpringData : is it possible to have subqueries in the Query annotation?(SpringData:查询注释中是否可以有子查询?)
问题描述
我想知道是否可以在@Query 注释中包含子查询(org.springframework.data.jpa.repository.Query;)
I would like to know if it is possible to have subquery in a @Query annotation (org.springframework.data.jpa.repository.Query;)
我在第一个子查询括号中收到 QuerySyntaxException.
I am getting a QuerySyntaxException on the first subquery parentesis.
这是我的查询
@Query(value="select c1 from ComplaintModel c1, "
+ "(select c2.id, min(cb.termDate) minDate from ComplaintModel c2 "
+ "join c2.complaintBullets cb join cb.status s where s.code = ?1 "
+ "group by c2.id) tmp where c1.id = tmp.id order by tmp.minDate")
谢谢!
推荐答案
不,JPQL查询的select子句中不能有子查询.
No, it is not possible to have subquery in the select clause in JPQL query.
JPQL 支持 WHERE 和 HAVING 子句中的子查询.它可以(至少)是 ANY、SOME、ALL、IN、EXIST 表达式的一部分,当然也可以使用普通的条件表达式:
JPQL supports subqueries in WHERE and HAVING clauses. It can be (at least) part of ANY, SOME, ALL, IN, EXIST expressions, and of course it can be used normal conditional expressions:
SELECT a
FROM A a
WHERE a.val = (SELECT b.someval
FROM B b
WHERE b.someotherval=3)
这篇关于SpringData:查询注释中是否可以有子查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SpringData:查询注释中是否可以有子查询?
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 降序排序:Java Map 2022-01-01