Created
March 10, 2015 14:45
-
-
Save labra/1ed9af401a61b79e631d to your computer and use it in GitHub Desktop.
Consulta DBPedia: Musicos que hayan nacido en el mismo lugar que los manieristas
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 dbo: <http://dbpedia.org/ontology/> | |
PREFIX dbr: <http://dbpedia.org/resource/> | |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
SELECT DISTINCT ?autor ?musico ?lugarNacimiento ?lugarFallecimiento WHERE { | |
?autor dbo:movement dbr:Mannerism . | |
?autor dbo:birthPlace ?lugarNacimiento . | |
?autor dbo:deathPlace ?lugarFallecimiento . | |
?musico dbo:birthPlace ?lugarNacimiento . | |
?musico dbo:deathPlace ?lugarFallecimiento . | |
?musico rdf:type dbo:MusicalArtist . | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment