query-d2348bc2383d3960f4fa4b1d66819df6
PropertiesATP player ID (P536)official website (P856)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?Wiki ?WikiLabel (COUNT(DISTINCT ?Player) AS ?count)
WHERE {
?Player wdt:P536 ?id .
?PlayerURL schema:about ?Player;
schema:isPartOf ?wikilang ;
schema:name ?PlayerTitle .
?Wiki wdt:P856 ?wikilang.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?Wiki ?WikiLabel ?count
ORDER BY DESC(?count)