题解 | #统计每种性别的人数#
统计每种性别的人数
http://www.nowcoder.com/practice/f04189f92f8d4f6fa0f383d413af7cb8
substring_index(*要分割的字符串*,*分隔符*,*数字*)
数字为正,从左往右,取左边;数字为负,从右往左,取右边
select SUBSTRING_INDEX(profile,',',-1)gender, count(profile)number from user_submit group by gender