Skip to content

Instantly share code, notes, and snippets.

@labra
Created March 10, 2015 14:45
Show Gist options
  • Save labra/1ed9af401a61b79e631d to your computer and use it in GitHub Desktop.
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
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