Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table called create with only one column called name of type varchar(16).

Now I want to delete all the duplicate names and leave only one of those.

Example

 name1
 name2
 name3
 name3
 name3
 name4

After is will be

 name1
 name2
 name3
 name4

Please advice, Thank you.

I was looking around for a query but most of the available query had something to do with an index.

share|improve this question

2 Answers

up vote 0 down vote accepted

Try this:

  DELETE   FROM yourTable
  WHERE    name IN (SELECT  name FROM  yourTable
  GROUP BY name
  HAVING  COUNT(*) > 1)

You can also use row_number

 WITH    cte
 AS 
 ( SELECT name, row_number() OVER ( PARTITION BY name ORDER BY name ) AS row_num
    FROM     yourTable
 )
DELETE  FROM cte
WHERE   row_num > 1
share|improve this answer
Worked but deleted all the duplicate data, not leaving atleast one. But anyways. It works enough for me :) I needed to delete the duplicate data so i can turn the column into an index. – nambla Jul 25 '12 at 17:37
This is wat you wanted rit .Delete the duplicate rows and keep only the unique ones ! – praveen Jul 25 '12 at 17:39

An index in MySQL is a way for the database engine to effectively partition and sort data so that your queries are more efficient. One of the things an index will allow you to do is specify that a particular column or field of data contain only unique entries. Creating such an index would prohibit the addition of data which has already been stored.

If you already have a column without an index, one way I can recommend you purge the duplicates is through the use of a temporary table. Create the temporary table by selecting all unique (distinct) names from the original table. Then delete everything in the original table, and copy the records back. At that point, consider adding an index.

share|improve this answer
Hello can I have created a temporary table for all the distinct data. What query should I use to insert them back? – nambla Jul 25 '12 at 17:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.