I have 2 tables:
course: id, name
student: id, course_id, age
Tables are tied with oneToMany annotation
I am trying to write a hibernate query against course that will return courses and students that are x years 0ld. That's my attempt:
SELECT c from Course c RIGHT JOIN c.student p ON p.age = 20
It returns a course that has at least one student that is 20. when there are more students that are not 20, they are included in the result set as well. Is there a way to restrict the joined table values?
Edit: These are my entities:
public class Course implements Serializable {
private static final long serialVersionUID = 646349111982187812L;
@Id
@Column(name = "id", unique=true, nullable=false)
private String id;
@Column(name = "name", unique=false, nullable=false)
private String name;
@OneToMany(cascade={CascadeType.ALL, CascadeType.REMOVE},
fetch=FetchType.LAZY, mappedBy = "Course")
@OrderBy("age")
@JsonManagedReference
private Set<Student> students;
getters and setters ...
}
public class Student implements Serializable {
private static final long serialVersionUID = 646349221337813L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column(name = "age", unique=false, nullable=true)
private String age;
@ManyToOne()
@JsonBackReference
private Course course;
}
I am trying to use this method from my crudrepository to get the expected result:
@Query(?????)
public List<Course> findCoursesWithAdults(@Param("age")int age)