Question

How would you do the following using the JPA query language?

select * from person where email in
(select email from person group by email having count(email)>1)
Was it helpful?

Solution

Finally found a solution:

select p from Person p
where p.email in (
    select q.email
    from Person q
    group by q.email having count(q.email)>1)
order by p.email, p.id

OTHER TIPS

From this link, there's a explanation of the general structure of a JPA SELECT Query:

SELECT ... FROM ...
[WHERE ...]
[GROUP BY ... [HAVING ...]]
[ORDER BY ...]
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top