Created
November 14, 2018 18:12
-
-
Save smetronic/c3017ed6757616a1a961b3a5ad4f048f to your computer and use it in GitHub Desktop.
List of duplicates rows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
UID, COUNT(Timestamp), Timestamp, GROUP_CONCAT(id) | |
FROM | |
Transactions | |
GROUP BY | |
UID,Timestamp | |
HAVING | |
COUNT(Timestamp) > 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment