Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple table as follows:

 id   |   author    |    title    |    CD     |
---------------------------------------------------
 1      Lady Gaga    Paparazzi     Full album
 2      Lady Gaga    Alejandro     Full album
 3      Lady Gaga    Alejandro     Single track
 4      Lady Gaga    Fever         Full album
 5      Lady Gaga    Paparazzi     Single track

As you may see there are some duplicates: 'Alejandro' and 'Paparazzi' rows are similar but NOT identical. I would like to delete the similar records and keep only one of the two.

So, for example, I would like to delete all those duplicated records that in the column CD have the word 'Single' but keep the similar records that in the column CD have the word 'Album' (using wildcards and the LIKE statement):

 id   |   author    |    title    |    CD     |
---------------------------------------------------
 1      Lady Gaga    Paparazzi     Full album      <- keep
 2      Lady Gaga    Alejandro     Full album      <- keep
 3      Lady Gaga    Alejandro     Single track    <- delete
 4      Lady Gaga    Fever         Full album
 5      Lady Gaga    Paparazzi     Single track    <- delete

I did find a tip about here but I did not manage to work it out.

share|improve this question
2  
"Similar" is poorly defined. You must first decide exactly what the criteria are for similarity for this to be an answerable question. – outis Dec 21 '11 at 14:06
By 'similar' I intend a record that differs from an other record by only one column. – Nicero Dec 21 '11 at 16:20
Please update the question with the meaning of "similar". In general, respond to requests for clarifications by updating your post, rather than replying with a comment. For one thing, a question should be understandable without reading comments. For another, SO is a QA & site, not a forum, and comments aren't intended (nor are they well suited) for discussions. – outis Dec 21 '11 at 21:18

closed as not a real question by zed_0xff, outis, Lightness Races in Orbit, kdgregory, Graviton Dec 23 '11 at 7:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

DELETE FROM `album`
 WHERE `cd` = 'Single track'
   AND `title` IN (SELECT `title`
                     FROM `album`
                    WHERE `cd` = 'Full album')

I think that this should do it. Note that this is untested and I am not 100% sure whether it works as I expect!

share|improve this answer
Won't work in its current form, since MySQL does not allow selecting from the table it is deleting. – newtover Dec 21 '11 at 15:56
Yes, I confirm. I tried and it does not work. – Nicero Dec 21 '11 at 16:17

I work it out. This does the job:

DELETE T1 FROM table_name T1, table_name T2 WHERE T1.title = T2.title and T1.cd > T2.cd
share|improve this answer
Implicit joins shouldn't be used when an explicit join will do the job (which is always). What if a row had "EP" in the CD column? Wouldn't you prefer to keep "Full Album" over "EP"? – outis Dec 26 '11 at 7:03

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