# 方法1 # select substring_index(substring_index(profile,',',-2),',',1) as age, count(device_id) as number from user_submit group by age, device_id # 方法2 select substring(profile,12,2) as age ,count(device_id) from user_submit group by age, device_id