[Err] 1093 - You can't specify target table 's' for update in FROM clause

执行SQL语句时出现这个错误。原因是在更新这个表和数据时又查询了它,而查询的数据又做了更新的条件。

[sql]
update pe_bzz_examscore s set s.total_grade = '不合格'
where s.id in (select t.id from pe_bzz_examscore t where t.fk_exam_batch_id = '0000'  and t.status = '111' and ifnull(t.total_score, 0) < 60)
[/sql]


解决方法:

1,把要更新的几列数据查询出来做为一个第三方表,然后筛选更新。

[sql]
update pe_bzz_examscore s set s.total_grade = '不合格'
where s.id in (select t.id from (select id,fk_exam_batch_id,status,total_score from pe_bzz_examscore) t
where t.fk_exam_batch_id = '0000'  and t.status = '111' and ifnull(t.total_score, 0) < 60)
[/sql]


2,新建一个临时表保存查询出的数据,然后筛选更新。最后删除临时表。

你可能感兴趣的:(mysql,mysql问题处理)