select 学生.学号,学生.姓名 from 学生 where 所在系=‘数学系’;select 学生.学号,选课.成绩 from 学生,选课 where 选课.课程号=‘(select 课程.课程号 from 课程 where 课程.课程名=‘课程C1’)’ and where 选课.成绩 >= 80 and 选课.成绩<=90;