/*年龄十岁以下的*/
select class,name,birth
from class
where age<10;
/*年龄10-20岁的*/
select class,name,birth
from class
where age between 10 and 20;
/*年龄20-30岁的*/
select class,name,birth
from class
where age between 20 and 30;
/*年龄30岁以上的*/
select class,name,birth
from class
where age>30;