table1、table2という名前の2つのテーブルがあります。どちらのテーブルにも同じ数のフィールドがあります。これら2つのテーブルの間に関係はありません。私の要件は、table2にないtable1のすべてのレコードが必要です。そこで、CriteriaAPIを使用してクエリを作成しました。しかし、それは正しい結果を与えていません。私はこのJPAとcriteriaAPIを初めて使用するので、どこで間違っているのかを指摘できます。これを行うために使用している以下のコード。
CriteriaBuilder cb = mediationEntityManager.getCriteriaBuilder();
CriteriaQuery<Table1> cq = cb.createQuery(Table1.class);
Root<Table1> table1 = cq.from(Table1.class);
cq.select(table1)
Subquery<Table2> subquery = cq.subquery(Table2.class)
Root table2 = subquery.from(Table2.class)
subquery.select(table2)
cq.where(cb.not(cb.exists(subquery)))
TypedQuery<Table1> typedQuery = mediationEntityManager.createQuery(cq);
List<Table1> resultList = typedQuery.getResultList();
MySQLクエリ:
SELECT table1
FROM table1 table1
WHERE NOT EXISTS (SELECT table2
FROM table2 table2
WHERE table2.name = table1.name
AND table2.education = table1.education
AND table2.age = table1.age)
AND table1.name = 'san'
AND table1.age = '10';
上記のMySQLクエリのJPA基準APIクエリが必要です。