问答题
完成SQL语句:按班级升序排序,成绩降序排序,查询student表的所有记录。
select * from student order by classno, score desc;
问答题 删除表student的数据,将所有3班出生日期小于1981年5月12日的记录删除。
问答题 修改表student的数据,将所有一班的学生成绩加10分。
问答题 向表student中插入如下2行。