首頁 > 資料庫 > mysql教程 > 如何有效地將 JPQL 的 IN 子句與集合結合?

如何有效地將 JPQL 的 IN 子句與集合結合?

Patricia Arquette
發布: 2024-12-28 16:11:32
原創
684 人瀏覽過

How Can I Use JPQL's IN Clause with Collections Effectively?

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板