query-39a64738dbbe90f560dd155e1b47736c

rq turtle/ttl

Personnes avec country of citizenship (P27) = France (Q142) (436288)Aphrodise de Béziers0200-01-0122(767764)Mellon de Rouen0229-01-0173(324700)Urbain de Langres0327-01-01124(304832)Césaire d'Arles0470-01-01275(393432)Sulpice le Pieux0501-01-01226(109860)Dagobert Ier0611-01-01277(191003)Carloman Ier0751-01-01208(187519)Charles III le Simple0879-09-21389(36242)Robert le Danois1000-01-018310(43939)Anselme de Cantorbéry1033-01-0132811(34428)Philippe II Auguste1165-08-2858912(5199)Le Châtelain de Coucy1300-01-0155113(29609)Maître d'Egerton1350-01-0154014(7226)Jeanne d'Arc1412-01-0178915(39978)Nostradamus1503-12-24247716(49478)Marivaux1688-02-04473117(39637)Nicolas Appert1749-11-172158518(33978)Robert Delaunay1885-04-124950319(4240)Serge Chiesa1950-12-2516746720(Q892115)Bernard Chazelle2002-12-1244021 exemple_personneexemple_datenombresiècle

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?siècle
  (COUNT(?item) as ?nombre)
  (SAMPLE(?d) as ?exemple_date)
  (SAMPLE(?item) as ?exemple_personne)
WHERE
{
    ?item wdt:P27 wd:Q142 ; wdt:P569 ?d ; wdt:P31 wd:Q5 . 
    FILTER(!ISBLANK(?d)) 
    BIND(FLOOR((YEAR(?d)-1)/100)+1 as ?siècle)
}
GROUP BY ?siècle
ORDER BY DESC(?siècle)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?d"):::projected v5("?exemple_date") v6("?exemple_personne") v3("?item"):::projected v4("?nombre") v4("?siècle"):::projected c5(["wd:Q5"]):::iri c2(["wd:Q142"]):::iri f0[["not isBlank(?d)"]] f0 --> v2 v3 --"wdt:P27"--> c2 v3 --"wdt:P569"--> v2 v3 --"wdt:P31"--> c5 bind1[/"numeric-floor(year-from-dateTime(?d) + '-1^^xsd:integer' / '100^^xsd:integer') + '+1^^xsd:integer'"/] v2 --o bind1 bind1 --as--o v4 bind5[/"count(?item)"/] v3 --o bind5 bind5 --as--o v4 bind6[/"sample(?d)"/] v2 --o bind6 bind6 --as--o v5 bind7[/"sample(?item)"/] v3 --o bind7 bind7 --as--o v6