SpringData :是否可以在查询注释中包含子查询?
2022-09-02 13:16:07
我想知道是否可以在@Query注释(org.springframework.data.jpa.repository.Query;)中使用子查询。
我在第一个子查询 parentesis 上得到了一个 QuerySyntaxException。
这是我的查询
@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")
谢谢!