操作 Student 表和 Achievement 表
将 Rose 的成绩修改为 87
update achievement a set a.mark=87 where a.id = ( select s.id from student s where name='Rose' );