Skip to content

Instantly share code, notes, and snippets.

@ssatz
Created March 4, 2018 07:17
Show Gist options
  • Save ssatz/13b2fc67f5dbefb2b014ca3c2c973bcd to your computer and use it in GitHub Desktop.
Save ssatz/13b2fc67f5dbefb2b014ca3c2c973bcd to your computer and use it in GitHub Desktop.
Mariadb Duplicate Values
SELECT
mobile,
COUNT(mobile)
FROM
members
GROUP BY mobile
HAVING COUNT(mobile) > 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment