query-afb45c68e00a3ac9b4cdd65015f031db
Ciudades de EE.UU. con al menos un millón de habitantes que no sean capital de estado
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 WHERE {
{ ?city wdt:P17 wd:Q30;
wdt:P31 wd:Q1637706.
}
MINUS { ?city wdt:P31 wd:Q21518270. }
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
c2(["wd:Q30"]):::iri
c9(["en"]):::literal
c4(["wd:Q1637706"]):::iri
c5(["wd:Q21518270"]):::iri
v1 --"wdt:P17"--> c2
v1 --"wdt:P31"--> c4
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P31"--> c5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end