题解 | #计算男生人数以及平均GPA#
计算男生人数以及平均GPA
https://www.nowcoder.com/practice/7d9a7b2d6b4241dbb5e5066d7549ca01
select count(gender)as male_num, round(avg(gpa),1)as avg_gpa from user_profile where gender="male"; #count() 计数函数 #as 重命名 #avg()求平均值 #round(number,num_digits):返回指定位数进行四舍五入数值。