Skip to content

Instantly share code, notes, and snippets.

@tommorris
Created September 16, 2012 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommorris/3734464 to your computer and use it in GitHub Desktop.
Save tommorris/3734464 to your computer and use it in GitHub Desktop.
SELECT DISTINCT ?article, ?birthDate, ?deathDate {
?resource <http://dbpedia.org/ontology/birthDate> ?birthDate ;
<http://dbpedia.org/ontology/deathDate> ?deathDate ;
<http://xmlns.com/foaf/0.1/isPrimaryTopicOf> ?article .
FILTER(?deathDate < ?birthDate)
}
LIMIT 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment