码迷,mamicode.com
首页 > 数据库 > 详细

mysql delete 注意

时间:2017-09-08 13:18:50      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:mon   报错   blog   max   log   highlight   注意   pre   临时表   

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 注意

标签:mon   报错   blog   max   log   highlight   注意   pre   临时表   

原文地址:http://www.cnblogs.com/GotoJava/p/7493955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!