Created
July 11, 2012 17:10
-
-
Save emres/3091787 to your computer and use it in GitHub Desktop.
SPARQL query that successfully find the actors who took role both in The Shining and Hoffa (run this query at http://live.dbpedia.org/sparql )
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 dbpedia2: <http://dbpedia.org/property/> | |
SELECT ?artist | |
FROM NAMED <http://live.dbpedia.org> | |
WHERE { | |
<http://dbpedia.org/resource/The_Shining_%28film%29> dbpedia2:starring ?artist . | |
<http://dbpedia.org/resource/Hoffa> dbpedia-owl:starring ?artist . | |
} | |
LIMIT 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment