select substring_index(substring_index(profile, ",", 3), ",", -1) as age, count(*) from user_submit group by age; select substring_index(substring_index(profile, ",", -2), ",", 1) as age, count(*) from user_submit group by age; -- 朝前截取或者朝后截取都可以