I am running a query successfully using in MySQL 5.5
SELECT columnA
FROM
table
GROUP BY
columnA
HAVING
count(*) > 1
However, I need to run this same query using DELETE and I'm a little unsure how to delete ? i.e. the returned results should be deleted ?
Any ideas ?