query-47a50a0c0dfe4c77e7e9d85c06649c3a
Bubble chart of Lithuanian universities with the most people ever employed by them
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#>
#title:Bubble chart of Lithuanian universities with the most people ever employed by them
#defaultView:BubbleChart
SELECT DISTINCT ?uLabel (COUNT(?r) as ?pop) ?u
{
?r wdt:P31 wd:Q5.
?r wdt:P108 ?u.
?u wdt:P17 wd:Q37.
?u wdt:P31/wdt:P279* wd:Q3918.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?pop ?uLabel ?u
ORDER BY DESC(?pop)