Skip to content

Instantly share code, notes, and snippets.

@apisznasdin
Last active December 25, 2015 03:59
Show Gist options
  • Save apisznasdin/6914248 to your computer and use it in GitHub Desktop.
Save apisznasdin/6914248 to your computer and use it in GitHub Desktop.
select statement to find duplicates on ext_name in ew_process_instance table
select ext_name, count(*)
from ew_process_instance
group by ext_name
having count(*) > 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment