query-b9e34c7ba43c3a45bc661651a3043510
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 DISTINCT ?positionLabel (ROUND(AVG(?age)) AS ?avage) {
?position wdt:P279 wd:Q1711695 .
?position wdt:P2937 ?term .
?term wdt:P580 ?termstart .
?who wdt:P39 ?position ; wdt:P569 ?birthdate .
BIND(ROUND((?termstart - ?birthdate)/365.2425) AS ?age)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
GROUP BY ?positionLabel ?avage
ORDER BY ?positionLabel