SELECT '25岁以下' as age_cut, count(id) as Number FROM user_profile WHERE age < 25 OR age is NULL UNION SELECT '25岁及以上' as age_cut, count(id) as Number FROM user_profile WHERE age >= 25