I am a hava java application with two objects: User.java and Review.java.
Each user can have many reviews.
The Review object has a User object (for example: review.getUser ())
I need an hql request that will get all users who do not have Reviews. How to do it?
source
share