Aquí hay un proceso de eliminación más ágil:
CREATE TABLE emailUnique LIKE emailTable;
ALTER TABLE emailUnique ADD UNIQUE INDEX (email);
INSERT IGNORE INTO emailUnique SELECT * FROM emailTable;
SELECT * FROM emailUnique;
ALTER TABLE emailTable RENAME emailTable_old;
ALTER TABLE emailUnique RENAME emailTable;
DROP TABLE emailTable_old;
Aquí hay algunos datos de muestra:
use test
DROP TABLE IF EXISTS emailTable;
CREATE TABLE `emailTable` (
`id` mediumint(9) NOT NULL auto_increment,
`email` varchar(200) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
INSERT INTO emailTable (email) VALUES
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]'),
('[email protected]');
SELECT * FROM emailTable;
Los corrí. Aquí están los resultados:
mysql> use test
Database changed
mysql> DROP TABLE IF EXISTS emailTable;
Query OK, 0 rows affected (0.01 sec)
mysql> CREATE TABLE `emailTable` (
-> `id` mediumint(9) NOT NULL auto_increment,
-> `email` varchar(200) NOT NULL default '',
-> PRIMARY KEY (`id`)
-> ) ENGINE=MyISAM;
Query OK, 0 rows affected (0.05 sec)
mysql> INSERT INTO emailTable (email) VALUES
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
('[email protected]');
SELECT * FROM emailTable;
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]'),
-> ('[email protected]');
Query OK, 15 rows affected (0.00 sec)
Records: 15 Duplicates: 0 Warnings: 0
mysql> SELECT * FROM emailTable;
+----+----------------------------+
| id | email |
+----+----------------------------+
| 1 | redwards@gmail.com |
| 2 | redwards@gmail.com |
| 3 | redwards@gmail.com |
| 4 | redwards@gmail.com |
| 5 | rolandoedwards@gmail.com |
| 6 | rolandoedwards@gmail.com |
| 7 | rolandoedwards@gmail.com |
| 8 | red@gmail.com |
| 9 | red@gmail.com |
| 10 | red@gmail.com |
| 11 | rolandoedwards@gmail.com |
| 12 | rolandoedwards@gmail.com |
| 13 | rolandoedwards@comcast.net |
| 14 | rolandoedwards@comcast.net |
| 15 | rolandoedwards@comcast.net |
+----+----------------------------+
15 rows in set (0.00 sec)
mysql> CREATE TABLE emailUnique LIKE emailTable;
Query OK, 0 rows affected (0.04 sec)
mysql> ALTER TABLE emailUnique ADD UNIQUE INDEX (email);
Query OK, 0 rows affected (0.06 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> INSERT IGNORE INTO emailUnique SELECT * FROM emailTable;
Query OK, 4 rows affected (0.01 sec)
Records: 15 Duplicates: 11 Warnings: 0
mysql> SELECT * FROM emailUnique;
+----+----------------------------+
| id | email |
+----+----------------------------+
| 1 | redwards@gmail.com |
| 5 | rolandoedwards@gmail.com |
| 8 | red@gmail.com |
| 13 | rolandoedwards@comcast.net |
+----+----------------------------+
4 rows in set (0.00 sec)
mysql> ALTER TABLE emailTable RENAME emailTable_old;
Query OK, 0 rows affected (0.03 sec)
mysql> ALTER TABLE emailUnique RENAME emailTable;
Query OK, 0 rows affected (0.00 sec)
mysql> DROP TABLE emailTable_old;
Query OK, 0 rows affected (0.00 sec)
mysql>
Como se muestra, emailTable contendrá la primera aparición de cada dirección de correo electrónico y la identificación original correspondiente. Para este ejemplo:
CAVEAT: Respondí una pregunta similar a esta sobre la eliminación de la tabla mediante un enfoque de tabla temporal .
Darle una oportunidad !!!
Aquí hay una solución de Itzik realmente rápida. Esto funcionará en SQL 2005 y versiones posteriores.
fuente