1) select 学号 from tableA where 课程编号=1002 and 成绩>=902) select 姓名,学号,课程编号 from tableA3) select 学号 from tableA where 成绩 between 70 and 854) select 姓名,性别,班级 from tableA where 姓名 like '%王%'
update table set 成绩=成绩-10 where 成绩>90