Mysql中You can’t specify target table for update in FROM clause错误解决方法

问题描述:

Mysql删选出同一张表的主键集合再使用该表的主键in进行删除报错。注意,这个问题只出现于mysql,mssql和oracle不会出现此问题。

原因分析:

Mysql不能先select出同一表中的某些值,再update这个表(在同一语句中)。

解决方案:

将select出的结果再通过中间表select一遍

delete from  `user` u1 where u1.id in(
	select u3.id from (
		select u2.id from `user` u2
	) u3
)

上一篇:报错:[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregat


下一篇:遇见 mysql Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggre 问题