我需要使用更新脚本更新表中的每条记录
查询1:
Select acheivementsId
from Students
where student_id = 2
结果:: 61 条记录// acheivementid 的数量
查询 2:
Select acheivementsId
from Students
where student_id = 4
结果:61 条记录// acheivementid 的数量
我需要用 student_id = 4 acheivementId 更新 Student_id = 2 acheivementid。
如何编写更新 61 条记录的更新语句。
谢谢