Created
March 21, 2016 18:11
-
-
Save ttepasse/29bca1e822b0bc3eaa94 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
PREFIX ont: <http://dbpedia.org/ontology/> | |
PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
SELECT ?name ?birth | |
WHERE { | |
?person ont:birthDate ?birth; | |
foaf:name ?name . | |
FILTER ( regex(str(?birth), "1914-[0-9]{2}-[0-9]{2}") ) | |
FILTER NOT EXISTS { ?person ont:deathDate ?death. } | |
} | |
LIMIT 1000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment