query-051f3e89a85ba87f6dd283169fbd6b9b
Rest of division = 0Hello, I couldn't find the mathematical operand to state I wish only those numbers modulo 10 = 0 ?
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 ?item ?valeur ?itemLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item wdt:P1181 ?valeur.
FILTER(?valeur > 10000000)
?item wdt:P31 wd:Q1816844.
} group by ?item ?valeur ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?valeur"):::projected
c3(["bd:serviceParam"]):::iri
c8(["wd:Q1816844"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?valeur > '10000000^^xsd:integer'"]]
f0 --> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
v2 --"wdt:P1181"--> v1
v2 --"wdt:P31"--> c8