Skip to content

Instantly share code, notes, and snippets.

@felipemesquita
Created June 20, 2012 14:29
Show Gist options
  • Save felipemesquita/2960163 to your computer and use it in GitHub Desktop.
Save felipemesquita/2960163 to your computer and use it in GitHub Desktop.
Verificando duplicidade em tabela
select campo1, campo2, campo3, count(*)
from tabela
group by campo1, campo2, campo3
having count(*) > 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment