select 
    substring_index(profile,',',-1) as gender,
    count(*) as number
from user_submit
group by 
    gender;