计算25岁以上和以下的用户数量 alt

select

case

when age>=25 then '25岁及以上'

else '25岁以下'

end age_cut,

count(*) number

from user_profile

group by age_cut