Last active
December 5, 2017 02:25
-
-
Save lisongx/aff1adbe1909611e2f13a458c3b1845f to your computer and use it in GitHub Desktop.
who's dead?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT ?entity ?entityLabel (YEAR(?date) as ?year) | |
WHERE | |
{ | |
BIND(MONTH(NOW()) AS ?nowMonth) | |
BIND(DAY(NOW()) AS ?nowDay) | |
?entity wdt:P106+ wd:Q639669 . | |
?entity wdt:P570 ?date . | |
FILTER (MONTH(?date) = ?nowMonth && DAY(?date) = ?nowDay) | |
SERVICE wikibase:label { | |
bd:serviceParam wikibase:language "en" . | |
} | |
} | |
LIMIT 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment