题解 | #统计每种性别的人数#
统计每种性别的人数
https://www.nowcoder.com/practice/f04189f92f8d4f6fa0f383d413af7cb8
select substring_index(profile,',','-1') as gender, count(device_id) from user_submit group by gender;
问题分解:
- 使用文本函数substring_index(profile,',','-1') as gender来获取该字段中第4个是female还是male从来判断该device_id的性别
- 以gender分组,使用count函数统计男女生数量
细节问题:
as