Skip to content

Instantly share code, notes, and snippets.

@dclarke-modus
Created November 29, 2017 08:26
Show Gist options
  • Save dclarke-modus/a7db8e12dc3127fd105c43144f01d6ba to your computer and use it in GitHub Desktop.
Save dclarke-modus/a7db8e12dc3127fd105c43144f01d6ba to your computer and use it in GitHub Desktop.
id, name, age
1, dean, 10
2, dean, 10
1, blah, 9
@websoftwares
Copy link

websoftwares commented Nov 29, 2017

select name, count(name) from students group by name having count(name) > 1

@dclarke-modus
Copy link
Author

dean, 2
blah, 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment