用于集合的 JPQL IN 子句
在 SQL 中使用 IN 子句基于一组值检索数据时,可以方便地传递数组或集合作为要检查的值。 JPQL 也支持 IN 子句,但它最初要求单独指定每个参数(例如,“in (:in1, :in2, :in3)”)。
JPA 2.0 及更高版本的解决方案
在 JPA 2.0 及更高版本中,可以将 Collection 作为参数传递给 IN条款。下面是一个示例:
String qlString = "select item from Item item where item.name IN :names"; Query q = em.createQuery(qlString, Item.class); List<String> names = Arrays.asList("foo", "bar"); q.setParameter("names", names); List<Item> actual = q.getResultList();
在 Hibernate 3.5.1 及更早版本中处理集合
对于 Hibernate 3.5.1 及更早版本,使用集合时有一个轻微的怪癖IN 子句中的参数。以下 JPQL 查询是有效的:
String qlString = "select item from Item item where item.name IN :names";
但是,Hibernate 无法正确处理此语法。要解决此问题,请用括号将参数括起来:
String qlString = "select item from Item item where item.name IN (:names)";
此不一致将被跟踪为 HHH-5126。
以上是如何有效地将 JPQL 的 IN 子句与集合结合使用?的详细内容。更多信息请关注PHP中文网其他相关文章!