select '25岁以下',count(age is null)
from user_profile
where age<25 or age is null
union all
select '25岁及以上',count(age)
from user_profile
where age>=25