Jump to content

How to delete duplicate rows after duplicated are found.


nonexist

Recommended Posts

Well I basically need to get rid of some duplicate rows. They do have a primary key of `id` but the id's don't repeat, other data does.

 

I have this

SELECT anValue, count(info)
FROM infos
GROUP BY info
HAVING count( * ) >1

Which shows the duplicates of anValue and gives the number for the duplicated of info.

 

I am wondering how I can delete these using what I have from above, without having to move them to another table.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.