使用 jpql 查找包含给定集合的所有元素的集合的项目

编程入门 行业动态 更新时间:2024-10-09 22:18:49
本文介绍了使用 jpql 查找包含给定集合的所有元素的集合的项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我想在标签集中找到包含所有给定标签的项目.

I want to find the items that contain all the given tags in their tags set.

以下是简化的类:

@Entity class Item { @ManyToMany var tags: java.util.Set[Tag] = new java.util.HashSet[Tag]() } @Entity class Tag { @ManyToMany(mappedBy="tags") var items: java.util.Set[Item] = new java.util.HashSet[Item] }

如果我像这样尝试

select distinct i from Item i join i.tags t where t in (:tags)

我得到包含任何给定标签的项目.这并不奇怪,但我想要包含 all 给定标签的项目.所以我反过来试试:

I get the items that contain any of the given tags. That is not surprising, but I want Items that contain all of the given tags. So I try it the other way around:

select distinct i from Item i join i.tags t where (:tags) in t

我收到错误消息 org.hibernate.exception.SQLGrammarException:行 IN 的参数必须全部是行表达式.如果 tags 只包含一个标签,它会起作用,但如果超过这个标签,它就会失败.

I get the error message org.hibernate.exception.SQLGrammarException: arguments of row IN must all be row expressions. It works if tags contains only a single tag, but it fails with more than that.

如何在 JPQL 中表达这一点?

How can I express this in JPQL?

推荐答案

诀窍是使用计数:

select i from Item i join i.tags t where t in :tags group by i.id having count(i.id) = :tagCount

更多推荐

使用 jpql 查找包含给定集合的所有元素的集合的项目

本文发布于:2023-11-29 15:51:58,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1646856.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:元素   项目   jpql

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!