query-466a285915e101c599dd6261bcbe749f
Décès dans un département, sauf Paris (232 résultats au 29-09-2016) SELECT ?item ?itemLabel ?date WHERE { ?item wdt:P20/wdt:P31 wd:Q6465 . minus { ?item wdt:P20 wd:Q90 }. OPTIONAL { ?item wdt:P570 ?date } SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" } }
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#>
#Décès dans un département, sauf Paris (232 résultats au 29-09-2016)
SELECT ?item ?itemLabel ?date WHERE {
?item wdt:P20/wdt:P31 wd:Q6465 .
minus { ?item wdt:P20 wd:Q90 }.
OPTIONAL { ?item wdt:P570 ?date }
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?date"):::projected
v1("?item"):::projected
a1((" "))
c4(["wd:Q90"]):::iri
c7(["bd:serviceParam"]):::iri
c3(["wd:Q6465"]):::iri
c9(["fr"]):::literal
v1 --"wdt:P20"--> a1
a1 --"wdt:P31"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P20"--> c4
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P570".-> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end