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

MySQL can’t specify target table for update in FROM clause

时间:2016-10-12 19:41:10      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

 翻译:MySQL不能指定更新的目标表在FROM子句

源SQL语句:

 

[sql] view plain copy
 
 print?
  1. delete from t_official_sys_user  
  2. where USER_NAME IN(SELECT USER_NAME FROM t_official_sys_user b group by b.`USER_NAME` having  count(1) > 1)  



 

执行报以下错误:

 

[sql] view plain copy
 
 print?
  1. [SQL]   
  2.   
  3. delete from t_official_sys_user  
  4. where USER_NAME IN(SELECT USER_NAME FROM t_official_sys_user b group by b.`USER_NAME` having  count(1) > 1)  
  5.   
  6. [Err] 1093 - You can‘t specify target table ‘t_official_sys_user‘ for update in FROM clause  



 

解决代码如下:

 

[sql] view plain copy
 
 print?
  1. delete from t_official_sys_user  
  2. where USER_NAME IN(
  3. select USER_NAME from
  4.  ( 
  5. SELECT USER_NAME FROM t_official_sys_user b group by b.`USER_NAME` having  count(1) > 1
  6. as temtable 
  7. );  

分析:

先把要删除的目标放到一张临时表再把要删除的条件指定到这张临时表即可。

http://blog.csdn.net/bluestarf/article/details/46622455

 http://www.cnblogs.com/nick-huang/p/4412818.html

MySQL can’t specify target table for update in FROM clause

标签:

原文地址:http://www.cnblogs.com/softidea/p/5953722.html

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