问答题

简答题 完成SQL语句:按班级升序排序,成绩降序排序,查询student表的所有记录。

【参考答案】

select * from student order by classno, score desc;