Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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