Skip to content

Instantly share code, notes, and snippets.

@cosminpopescu14
Last active February 3, 2019 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosminpopescu14/e2ef0efef9bdd078b5fdb86754bf305f to your computer and use it in GitHub Desktop.
Save cosminpopescu14/e2ef0efef9bdd078b5fdb86754bf305f to your computer and use it in GitHub Desktop.
Top romanian users onm Stackoverflow
select top 20 Reputation, DisplayName, WebsiteUrl, Location, RANK()
over (order by Reputation desc) as Ranking
from Users
where Location like '%Romania%'
order by Reputation desc
select Reputation, DisplayName, WebsiteUrl, Location, RANK()
over (order by Reputation desc) as Ranking
from Users
where Location like '%Romania%'
order by Reputation desc
@cosminpopescu14
Copy link
Author

Now it's working

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