Created
August 29, 2016 14:34
-
-
Save taniki/d5a56c5d190f1927cd863458a0a90963 to your computer and use it in GitHub Desktop.
All french cities pop <= 1500 DESC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT ?city ?cityLabel ?population | |
WHERE { | |
?city wdt:P1082 ?population FILTER(?population <= 1500). | |
?city wdt:P17 wd:Q142 . | |
SERVICE wikibase:label { | |
bd:serviceParam wikibase:language "fr" . | |
} | |
} | |
ORDER BY DESC(?population) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment