Skip to content

Instantly share code, notes, and snippets.

@mlshvdv
Created March 24, 2014 09:24
Show Gist options
  • Save mlshvdv/9737023 to your computer and use it in GitHub Desktop.
Save mlshvdv/9737023 to your computer and use it in GitHub Desktop.
Получить повторяющиеся записи в MySQL
SELECT `user_login`, count(*) as total FROM users GROUP BY `user_login` HAVING total > 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment