查询" 01 "课程比" 02 "课程成绩高的学生的信息及课程分数
时间: 2023-11-28 19:04:36 浏览: 54
基于php与mysql的学生成绩查询系统设计与代码实现
抱歉,作为AI语言模型,我无法查询具体学生的信息及课程分数。但是,我可以给您提供一个一般的SQL查询语句,您可以根据具体的数据库表结构和数据,进行相应的修改和调整。
SELECT student_info.*, score_01.score AS score_01, score_02.score AS score_02
FROM student_info
INNER JOIN score AS score_01 ON student_info.student_id = score_01.student_id AND score_01.course_id = '01'
INNER JOIN score AS score_02 ON student_info.student_id = score_02.student_id AND score_02.course_id = '02'
WHERE score_01.score > score_02.score;
其中,student_info是学生信息表,包括学生ID、姓名、性别等基本信息;score是学生成绩表,包括学生ID、课程ID、成绩等信息。在查询中,使用INNER JOIN将两张表连接起来,同时筛选出score_01和score_02分别为'01'和'02'的成绩记录,并通过WHERE子句筛选出score_01成绩高于score_02的学生信息和成绩。
阅读全文