从 Student 表和 Achievement 表中查询成绩 >85 分的学生的姓名与成绩
>85
select s.name, a.mark from student s, achievement a where s.id = a.id and a.mark > 85;