1、COUNT计数 AVG平均数 ROUND四舍五入(可控制几位小数)
SELECT COUNT(gender) AS male_num,
ROUND(avg(gpa),1) AS avg_gpa
FROM user_profile
WHERE gender = 'male'