Example :
Select * from student where roll_no in ( 1,2,3 );
In student repository (Spring Boot):
@Query(value="Select * from student where roll_no in (?)",native =true)
List selectStudents(What do I give here ?)
Or is there any other way to implement this?