query-a4dabb222960359422a95f61999921b9
Comparativa del volumen de los océanos de la tierra
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 ?oceano ?oceanoLabel ?volumen WHERE {
?oceano wdt:P31 wd:Q9430 .
?oceano wdt:P361 wd:Q715269 .
?oceano wdt:P2234 ?volumen .
SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
} ORDER BY DESC (?volumen)
Query found at
- https://www.wikidata.org/wiki/User:Japastorsanchez/webdatos-2022-2023-laboratorio2
- https://www.wikidata.org/wiki/User:Japastorsanchez/webdatos-2022-2023-laboratorio2-soluciones
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?oceano"):::projected
v1("?volumen"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q9430"]):::iri
c4(["wd:Q715269"]):::iri
c9(["es"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P361"--> c4
v2 --"wdt:P2234"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end