query-95b9bc6e35785e896d4627421337ebb7
llista arbitrària de municipis SELECT ?municipiLabel ?estatLabel ?poblacio WHERE { ?municipi wdt:P31/wdt:P279 wd:Q15284. ?municipi wdt:P17 ?estat. ?municipi wdt:P1082 ?poblacio. ?estat wdt:P31 wd:Q3624078. SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } } LIMIT 60000
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#>
#llista arbitrària de municipis
SELECT ?municipiLabel ?estatLabel ?poblacio WHERE {
?municipi wdt:P31/wdt:P279 wd:Q15284.
?municipi wdt:P17 ?estat.
?municipi wdt:P1082 ?poblacio.
?estat wdt:P31 wd:Q3624078.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 60000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?estat")
v1("?municipi")
v3("?poblacio"):::projected
a1((" "))
c6(["wd:Q3624078"]):::iri
c8(["bd:serviceParam"]):::iri
c3(["wd:Q15284"]):::iri
c10(["en"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P17"--> v2
v1 --"wdt:P1082"--> v3
v2 --"wdt:P31"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end