题解 | 截取出年龄
select substring_index (substring_index (profile, ',', 3), ',', -1) as age, count(device_id) as number from user_submit GROUP by age
select substring_index (substring_index (profile, ',', 3), ',', -1) as age, count(device_id) as number from user_submit GROUP by age
相关推荐