query-b2608092b4a670d0a3cc7d3fb847cb8a
TODO
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 ?instrument ?instrumentLabel (COUNT(?student) AS ?count)
WHERE {
?student wdt:P1303 ?instrument;
wdt:P1416 wd:Q98035717;
wdt:P69 wd:Q219563.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
} GROUP BY ?instrument ?instrumentLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?count")
v2("?instrument"):::projected
v1("?student"):::projected
c5(["wd:Q219563"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c3(["wd:Q98035717"]):::iri
v1 --"wdt:P1303"--> v2
v1 --"wdt:P1416"--> c3
v1 --"wdt:P69"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind1[/"count(?student)"/]
v1 --o bind1
bind1 --as--o v3