Skip to content

Instantly share code, notes, and snippets.

@taniki
Created August 29, 2016 14:34
Show Gist options
  • Save taniki/d5a56c5d190f1927cd863458a0a90963 to your computer and use it in GitHub Desktop.
Save taniki/d5a56c5d190f1927cd863458a0a90963 to your computer and use it in GitHub Desktop.
All french cities pop <= 1500 DESC
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