I have for example 2 entities.
A entity (Mysql Table name="A")
B entity (Mysql Table name="B")
I want fetch data from A table where it is not in the B table.
I wrote sql and it is working.
SELECT * FROM A
LEFT OUTER JOIN B
ON A.id = B.a_id
WHERE B.id IS null
How to realize it with JPQL?