If your database is MySQL, you cannot do it straight in one-shot SQL cuz it doesnt support sub-queries. You might have to write a script to run through the database and delete the redundant ones. To enlist all those are repeated, try this:
if your table (TEST, for example) is as follows....
+-------+-------------+------
| Field | Type | Null
+-------+-------------+------
| col1 | varchar(10) | YES
+-------+-------------+------
....then, try the following SQL:
select , count() from test group by col1 having count(*) > 1;
+------------+----------+
| col1 | count(*) |
+------------+----------+
| Here's the | 2 |
+------------+----------+
Hope that gets you started...its not rocket science really. 🙂 Feel free to holler if you need more help...
-Shanx