query-ee82969d10857fbebd3d1ef262ebb7c2
Les 100 physicien-ne-s ayant le plus grand nombre d'articles scientifiques associƩs. select distinct ?auteurLabel ?auteurDescription ?sexeLabel ?count ?auteur where { {select distinct ?auteur ?sexe (count (distinct ?item) as ?count) where { ?item wdt:P31 wd:Q13442814 ; wdt:P50 ?auteur . ?auteur wdt:P106/wdt:P279* wd:Q169470 ; wdt:P21 ?sexe . } group by ?auteur ?sexe order by desc (?count) limit 100 } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } order by desc (?count)
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#>
#Les 100 physicien-ne-s ayant le plus grand nombre d'articles scientifiques associƩs.
select distinct ?auteurLabel ?auteurDescription ?sexeLabel ?count ?auteur where {
{select distinct ?auteur ?sexe (count (distinct ?item) as ?count) where {
?item wdt:P31 wd:Q13442814 ;
wdt:P50 ?auteur .
?auteur wdt:P106/wdt:P279* wd:Q169470 ;
wdt:P21 ?sexe .
}
group by ?auteur ?sexe
order by desc (?count)
limit 100
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
order by desc (?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?auteur"):::projected
v5("?count"):::projected
v2("?item")
v4("?sexe")
a1((" "))
c2(["wd:Q13442814"]):::iri
c9(["bd:serviceParam"]):::iri
c6(["wd:Q169470"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P50"--> v3
v3 --"wdt:P106"--> a1
a1 --"wdt:P279"--> c6
v3 --"wdt:P21"--> v4
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end