query-37ea69be8be5bd295cfd2787f7419064

rq turtle/ttl

原始列表 按所属国家统计得奖人数

Use at

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#>
#defaultView:LineChart
SELECT ?countryLabel (COUNT(?human) AS ?TotalPrizeNumber)  ?country   WHERE {
#SELECT ?countryLabel ?country ?humanLabel   WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "zh,[AUTO_LANGUAGE],". }
  ?human (wdt:P166/(wdt:P279*)) wd:Q7191;
    wdt:P31 wd:Q5;
    wdt:P27 ?country.
}
GROUP BY ?countryLabel ?country
ORDER  BY  DESC(?TotalPrizeNumber)
LIMIT 10000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?TotalPrizeNumber") v3("?country"):::projected v2("?human"):::projected a1((" ")) c2(["bd:serviceParam"]):::iri c4(["zh,#91;AUTO_LANGUAGE#93;,"]):::literal c9(["wd:Q5"]):::iri c7(["wd:Q7191"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v2 --"wdt:P166"--> a1 a1 --"wdt:P279"--> c7 v2 --"wdt:P31"--> c9 v2 --"wdt:P27"--> v3 bind1[/"count(?human)"/] v2 --o bind1 bind1 --as--o v4