mysql delete 注意
Posted K____K
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql delete 注意相关的知识,希望对你有一定的参考价值。
mysql中You can‘t specify target table <tbl> for update in FROM clause错误的意思是说,不能先select出同一表中的某些值,再update这个表(在同一语句中)。
例如下面这个sql: 报错
DELETE from monthxl where dateTime in ( SELECT a.dateTime from monthxl a where a.dateTime !=( select max(b.dateTime) from monthxl b where a.month=b.month ) )
修改如下:
DELETE FROM monthxl where dateTime in
( select b.dateTime from ( -- 用临时表 包装一层 再删除 SELECT a.month,a.dateTime from monthxl a where a.dateTime !=( select max(b.dateTime) from monthxl b where a.month=b.month ) ) b )
以上是关于mysql delete 注意的主要内容,如果未能解决你的问题,请参考以下文章
Docker删除报错:Error response from daemon: conflict: unable to delete 08b152afcfae (must be forced)(代码片段