各位,如果一般的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)
这样完全没有问题。
但如果有时需要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)
这样完全没有问题。