select value from students where coll_Id in (1,2,3,4,5,6,7,8,9,10);
РЕДАКТИРОВАТЬ: // см. Комментарий к вопросу от @ t-clausen.dk
Если вы всегда имеете дело с диапазонами, вы можете использовать
select value from students where coll_Id between 1 and 10;
, что эквивалентно
select value from students where coll_Id >= 1 and coll_id <= 10;