I have a table like this:
| id | EAN | supplier_code |
|0001|11111| aaaaaa|
|0002|22222| aaaaaa|
|0003|33333| bbbbbb|
|0004|33333| cccccc|
|0005|11111| aaaaaa|
I must delete ID's like 3 and 4 because they are dirty data. How do I write a select to find them?
something like this
SELECT id, EAN, supplier_code, COUNT( id ) AS NumDuplicati
FROM table
WHERE supplier_code <> ""
GROUP BY EAN
HAVING NumDuplicati >1
But I mustn't delete ID's like 1 and 5...