Skip to content

Instantly share code, notes, and snippets.

@asilbalaban
Created December 24, 2013 08:54
Show Gist options
  • Save asilbalaban/8110561 to your computer and use it in GitHub Desktop.
Save asilbalaban/8110561 to your computer and use it in GitHub Desktop.
SQL tekrar eden sonuçları bulma
SELECT
mail, sehir, COUNT(*)
FROM
mails
GROUP BY
mail
HAVING
COUNT(*) > 1
ORDER BY
COUNT(*) DESC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment