query-4028377540982d0a156aa70379efe7ad
Universitäten weltweit, sortiert nach Anzahl Studierender
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 DISTINCT ?country ?countryLabel (sum(?numberOfStudents) AS ?numberOfStudentsPerCountry)
{
?uni wdt:P31 wd:Q3918 . # Universität
?uni wdt:P17 ?country .
?uni wdt:P2196 ?numberOfStudents .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" }
} GROUP BY ?country ?countryLabel
ORDER BY DESC(?numberOfStudentsPerCountry)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?country"):::projected
v4("?numberOfStudents"):::projected
v5("?numberOfStudentsPerCountry")
v2("?uni")
c6(["bd:serviceParam"]):::iri
c2(["wd:Q3918"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P17"--> v3
v2 --"wdt:P2196"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"sum(?numberOfStudents)"/]
v4 --o bind1
bind1 --as--o v5