query-e06aa130f5c78b144d70be3fd25ea273
Comparativa de evolución de población de países de la Unión Europea
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:LineChart
SELECT ?año ?poblacion ?pais ?paisLabel
WHERE
{
{
SELECT ?pais ?año (avg(?poblacion_valor) as ?poblacion)
WHERE
{
?pais wdt:P463 wd:Q458 .
?pais p:P1082 ?poblacion_statement.
?poblacion_statement ps:P1082 ?poblacion_valor.
?poblacion_statement pq:P585 ?fecha.
bind(str(YEAR(?fecha)) AS ?año)
FILTER(?pais!=wd:Q145)
}
group by ?pais ?año
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],es". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?año"):::projected
v4("?fecha")
v1("?pais"):::projected
v6("?poblacion"):::projected
v2("?poblacion_statement")
v3("?poblacion_valor")
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,es"]):::literal
c3(["wd:Q458"]):::iri
f0[["?pais != 'wd:Q145'"]]
f0 --> v1
v1 --"p:direct/P463"--> c3
v1 --"p:P1082"--> v2
v2 --"p:statement/P1082"--> v3
v2 --"p:qualifier/P585"--> v4
bind1[/"str(year-from-dateTime(?fecha))"/]
v4 --o bind1
bind1 --as--o v5
bind3[/"average(?poblacion_valor)"/]
v3 --o bind3
bind3 --as--o v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end