query-14099f2c35930ae18fad3d037e20c024
City by population in a state
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?city ?cityLabel ?countyLabel ?pop WHERE {
# a city in the US
?city wdt:P31/wdt:P279 wd:Q1093829 .
# expect next administrative territory is a county
?city wdt:P131 ?county .
# in a particular state
?county wdt:P131 wd:Q1384 .
# get the population
?city wdt:P1082 ?pop .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
} ORDER BY DESC(?pop) LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?city"):::projected
v3("?county")
v1("?pop"):::projected
a1((" "))
c3(["wd:Q1093829"]):::iri
c8(["bd:serviceParam"]):::iri
c5(["wd:Q1384"]):::iri
c10(["en"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P131"--> v3
v3 --"wdt:P131"--> c5
v2 --"wdt:P1082"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end