Im using Specification
s that use CriteriaBuilder
to filter data which is called from my JpaRepository
using findAll()
, but now I have a more complicated query in SQL that I need to generate a Predicate
in my specification.
The SQL query is:
SELECT a.*
FROM A a
LEFT JOIN (SELECT e.a_id, sum(e.amount) AS matched_total
FROM E e
GROUP BY e.a_id
HAVING e.a_id IS NOT NULL) AS sub ON sub.a_id = a.id
WHERE coalesce(matched_total, 0) = a.amount;
Entity E links to A:
+--------+
| id |
| amount |
| a_id |
+--------+
Entity A:
+--------+
| id |
| amount |
+--------+
(Or maybe there is a way to write this as HQL and use that to build a Predicate
somehow ?)
Additional notes:
- There is a one-to-many relationship between E and A, so several rows in A could be associated to a single row in E.
- The
a_id
in E is also nullable, so potentially there could be rows in A not associated with a row in E - we need to ignore those. - Ultimately we want to find all the rows in A that are associated to a single row in E but only where the
amount
s of the rows in A sum up to the singleamount
row in E - this is why we calculatematched_total
.
Unless I'm missing something obvious, isn't the query equivalent to the following?
The above query is easily translatable to Criteria API, sth along the lines of: