I am successfully able to select duplicate queries in phpmyadmin as follow
SELECT *, COUNT(ID)
FROM LINKS
GROUP BY URL
HAVING COUNT( ID ) >1
Now, I need to delete the same entries which are having duplicate entries, what is the query I need to run for the fetched queries. Just before deleting, I want to make sure, that I am running the correct one. Thanks in advance