mysql中You can't specify target table for update in FROM clause错误

我config表其中有个字段叫instrument,是instrument表的外键。
现在 config表中有脏数据,也就是说 config表中有一系列数据 但是 通过config.instrument 在instrument表中查不到相关数据,所以需要删除这些多余的数据
我先写了这个sql语句

delete from config where uid in
   (select c.uid from config as c where c.instrument not in 
      (select uid from instrument))

但是出错了


image.png

经过查询结果后得知,不能先select出同一表中的某些值,再update这个表(在同一语句中)
所以需要再嵌套一次查询

delete from config where uid in
    (select a.uid from 
        (select * from config as c where c.instrument not in 
            (select uid from instrument)) as a)

sql正常运行
注意的是,参考文档说 这个问题只出现于mysql,mssql和oracle不会出现此问题。
ref>http://blog.csdn.net/priestmoon/article/details/8016121

你可能感兴趣的:(mysql中You can't specify target table for update in FROM clause错误)