query-16bb6e174d15c440ab367e0a2bd6e129
Propertiespopulation (P1082)point in time (P585)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?population ?pointInTime WHERE {
wd:Q2773 p:P1082 ?statement.
OPTIONAL {
?statement psv:P1082/wikibase:quantityAmount ?population.
?statement pq:P585 ?pointInTime.
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
} ORDER BY ( ?pointInTime )
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?pointInTime"):::projected
v3("?population"):::projected
v2("?statement")
a1((" "))
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c1(["wd:Q2773"]):::iri
c1 --"p:P1082"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:statement/value/P1082".-> a1
a1 --"wikibase:quantityAmount"--> v3
v2 --"p:qualifier/P585"--> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end