I have a table with these fields and (sample) data:
id | dropperid | itemid
 1 | 933101    | 513     
 2 | 330400    | 381     
 3 | 868939    | 585    
 4 | 111111    | 646     
 5 | 933101    | 513     
 6 | 933101    | 513     
 7 | 943844    | 513     
How do I remove all duplicates, where "duplicate" means the same dropperid and itemid?
In the sample above, I want to remove id 5 and 6.
Is there a way I can do this to my entire table? I don't want to write in every single dropperid and itemid to remove duplicates.
 
     
     
    