从 Student 表和 Achievement 表中查询成绩 >=90 分的人数
>=90
select count(*) from achievement a where a.mark >= 90;