About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
nogorilla
10/15/2013 - 1:20 AM
share
Share
add_circle_outline
Save
Find duplicate values in mysql
Find duplicate values in mysql
duplicate
content_copy
file_download
SELECT name, COUNT(*) c FROM table GROUP BY name HAVING c > 1;
clear