用於集合的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中文網其他相關文章!