delete

各位,如果一般的delete, 用delete from tableA where ….就足够了。



但如果有时需要left join或子查询外表来删除数据,MYSQL不支持delete from tableA where id in (select id from tableA a left join tableB b on a….) (oracle是支持的)

因为它不能在in 中,加入自已。但如果使用它的结果集,作成临时表别名,就OK了。



花了一点时间去找,所以相信会对大家有帮助。参考。



见下例。





mysql> select * from a;
+------+-------+
| id | name |
+------+-------+
| 1 | test1 |
| 2 | test2 |
| 3 | test3 |
| 4 | test3 |
| 5 | test3 |
+------+-------+
5 rows in set (0.00 sec)

对这样的一个表,需要删除 name相同的记录。id没有要求,但我这里只留下最小的id。

mysql> delete from a where id not in (select min(id) as id from a group by name);
ERROR 1093 (HY000): You can't specify target table 'a' for update in FROM clause

google查询结构,原来mysql不支持这样的同时有select跟delete/update同一个表的操作。不过可以变通一下:

mysql> delete from a where id not in (select * from (select min(id) as id from a group by name) b where a.id=b.id);
Query OK, 2 rows affected (0.01 sec)



用一个b来作一个别名。就OK了。



当然这样的问题在sqlserver上没有了。

delete from #a where id not in (select min(id) from #aa group by name)

这样完全没有问题。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值