query-0347a7ced9edbbc1cfab18a278bf9068
Liste deutschen Hochschulen, 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 ?w ?wLabel ?students
{
?w wdt:P31/wdt:P279* wd:Q38723 .
?w wdt:P17 wd:Q183 .
?w wdt:P2196 ?students .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de" }
} ORDER BY DESC(?students) ASC(?wLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?students"):::projected
v3("?w"):::projected
v2("?wLabel"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c5(["wd:Q183"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en,de"]):::literal
c3(["wd:Q38723"]):::iri
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v3 --"wdt:P17"--> c5
v3 --"wdt:P2196"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end