I have check the other post about this but nothing seems to work for me. I have a MySQL database called cmd table called insta, with two col named vid ( int(11) and url (TEXT). What I want to do is find any duplicate url and display both the vid and the url. I have tried.
SELECT vid, url FROM insta
GROUP BY vid, url
HAVING COUNT(*) > 1
Even though them seems to work for other people it's not working for me. Can anyone tell me what I'm doing wrong