case
when
条件
then
做的动作
when
条件
then
做的动作
else
做的动作
end
case 变量
when 值1
then action1
when 值2
then action2
else action3
end
if(条件,为true的时候的动作,为false的时候的动作)
concat(round(sum(if(scores>=60,1,0))*100/count(stu_id),2),''%'')