我写的答案是:select count(*),round(avg(gpa),1) as avg_gpa from user_profile where gender="male"; 参考答案是:select count(gender) as male_num,round(avg(gpa), 1) as avg_gpafrom user_profile where gender="male"; 运行的结果都是正确的,请问有什么区别呢?