主要就是用条件加函数,count() , round(),avg()函数后面不要有空格
select count(gender) as male_num ,round(avg(gpa),1)
from user_profile
where gender='male';
主要就是用条件加函数,count() , round(),avg()函数后面不要有空格
select count(gender) as male_num ,round(avg(gpa),1)
from user_profile
where gender='male';