query-f93877ea97a1fd1e18cfe2ea02fd3938
Get only january, but for month 1, it also get the values with only the year/century/millenia. Do someone know how to get only the value for month = 1 ? : It work for month 2 to 12 by month. (P570)date of death With this query, I can get Hi,
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?mort WHERE {
?item wdt:P570 ?mort
FILTER(month(?mort) = NUMBER)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
LIMIT 1000