直接将三表关联查询就可以了select b.姓名,c.课程,a.成绩 from 成绩表 a,学生表 b,课程表 cwhere a.学生学号 = b.学号 and a.课程编号 = c.编号 and a.成绩 < 60