query-e995c444a39dcea8533effc2e6d0776f
Capitales de estado o ciudades con al menos un millón de habitantes en EE.UU.
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 DISTINCT ?city ?cityLabel WHERE {
{ ?city wdt:P31 wd:Q21518270. }
UNION
{ ?city wdt:P17 wd:Q30.
?city wdt:P31 wd:Q1637706.
}
SERVICE wikibase:label
{ bd:serviceParam wikibase:language "en". }
}
Query found at
- https://www.wikidata.org/wiki/User:Japastorsanchez/WebDatos2022-2023
- https://www.wikidata.org/wiki/User:Japastorsanchez/webdatos-2023-2024/seminario-sparql
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?city"):::projected
c7(["bd:serviceParam"]):::iri
c4(["wd:Q30"]):::iri
c9(["en"]):::literal
c5(["wd:Q1637706"]):::iri
c2(["wd:Q21518270"]):::iri
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P17"--> c4
v1 --"wdt:P31"--> c5
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P31"--> c2
end
union0r <== or ==> union0l
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end