query-41437567133dcbd92ae1c65a4795743b
Häufigste Todesursache der Menschen in Dresden
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#>
#---------------------------------------------------------------------------------------
# Häufigste Todesursache der Menschen in Dresden
#---------------------------------------------------------------------------------------
#defaultView:BubbleChart
SELECT ?todesursache ?todesursacheLabel (COUNT(?todesursache) AS ?anzahl)
{
?item wdt:P20 wd:Q1731.
?item wdt:P509 ?todesursache.
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en"}
} group by ?todesursache ?todesursacheLabel
order by desc(?anzahl)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?anzahl")
v2("?item")
v3("?todesursache"):::projected
c5(["bd:serviceParam"]):::iri
c7(["de,en"]):::literal
c2(["wd:Q1731"]):::iri
v2 --"wdt:P20"--> c2
v2 --"wdt:P509"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind1[/"count(?todesursache)"/]
v3 --o bind1
bind1 --as--o v4