I have table in my DB called "students" contains the following columns (student_id, student_name, year_of_birth).and array of yearsI trying to make one query that gets 10 student_id of each year in (years) array.I could write\[code\]SELECT student_id FROM `students` WHERE year_of_birth=1950 LIMIT 10;SELECT student_id FROM `students` WHERE year_of_birth=1951 LIMIT 10;SELECT student_id FROM `students` WHERE year_of_birth=1952 LIMIT 10;SELECT student_id FROM `students` WHERE year_of_birth=1953 LIMIT 10;(and so on)\[/code\]But that would be very time consumingAre there any other optionsThank you