Voici un processus de suppression plus rationalisé:
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;
Voici quelques exemples de données:
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;
Je les ai dirigés. Voici les résultats:
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>
Comme indiqué, l'emailTable contiendra la première occurrence de chaque adresse e-mail et l'identifiant d'origine correspondant. Pour cet exemple:
CAVEAT: J'ai répondu à une question similaire à celle-ci concernant la suppression de table au moyen d'une approche de table temporaire .
Essaie !!!
Voici une vraie solution Itzik rapide. Cela fonctionnera dans SQL 2005 et supérieur.
la source