少写了个表吧,还有个课程表吧,要不教师和成绩没法关联
select a.班级,a.姓名,c.成绩from 学生表 a,课程表 b,成绩表 c,教师表 d where a.学号=c.学号 and b.课程号=c.课程号 and b.课程号=d.课程号 and d.教师姓名='陈青松'order by c.成绩 desc