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

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

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

 

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)

 

 

解决方法:

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

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)

 

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

 

毫毛疑问用第一种方法要好。

权作笔记在此,帮助更多人吧。

你可能感兴趣的:(oracle,sql,table)