当前位置 : 主页 > 手机开发 > ROM >

【sql: 练习题 30,31】查询存在不及格的课程,查询课程编号为 01 且课程成绩在

来源:互联网 收集:自由互联 发布时间:2021-06-10
题目30:查询存在不及格的课程 分析:直接 查询 student_score score60 得到courseid 这样的话courseid会有很多重复的,要用到distinct 关键字、 SELECT DISTINCT student_course.coursename FROM student_score,st

题目30:查询存在不及格的课程

分析:直接 查询 student_score  score<60 得到courseid  这样的话 courseid会有很多重复的,要用到distinct 关键字、

 

 

SELECT DISTINCT student_course.coursename FROM student_score,student_course WHERE
student_score.score<60 AND student_score.courseid = student_course.id

 

分享图片

 

31:查询课程编号为 01 且课程成绩在 80 分及以上的学生的学号和姓名

分析:这个直接就是联合查询

 

SELECT student.id, student.stdentname FROM student, student_score WHERE student_score.courseid = 01
AND student_score.score >=80 AND student.id = student_score.studentid

 

分享图片

网友评论