码迷,mamicode.com
首页 > 其他好文 > 详细

从表中删除雇员名字相同的员工记录(需要最少保留一条记录)

时间:2017-07-02 19:44:22      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:group by   语句   update   use   一个   images   tab   rac   error   

 

表中数据:

技术分享

 

执行语句:

mysql> delete from emp where empNO not in (select min(empNO) from emp group by ename);
ERROR 1093 (HY000): You can‘t specify target table ‘emp‘ for update in FROM clause

 

MySQL出现You can’t specify target table for update in FROM clause
这个错误的意思是不能在同一个sql语句中,先select同一个表的某些值,
然后再update这个表。
这个错误在oracle中不会出现!


修改语句后执行:OK
delete from emp where empNO not in
(
select *
from
(
select min(empNO)
from emp
group by ename
)
a);

 

从表中删除雇员名字相同的员工记录(需要最少保留一条记录)

标签:group by   语句   update   use   一个   images   tab   rac   error   

原文地址:http://www.cnblogs.com/fanxuanhui-linux/p/7106847.html

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