Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.45 KB | None | 0 0
  1. PREFIX dbo: <http://dbpedia.org/ontology/>
  2. PREFIX owl: <http://www.w3.org/2002/07/owl#>
  3. PREFIX ecrm: <http://erlangen-crm.org/current/>
  4. SELECT ?name1 ?name2 {
  5.     ?trainer dbo:training ?trainee .
  6.   ?person1 owl:sameAs ?trainer ;
  7.   a ecrm:E39_Actor ;
  8.    ecrm:P131_is_identified_by ?id1 .
  9.   ?id1 ecrm:P3_has_note ?name1 .
  10.     ?person2 owl:sameAs ?trainee ;
  11.   a ecrm:E39_Actor ;
  12.    ecrm:P131_is_identified_by ?id2 .
  13.   ?id2 ecrm:P3_has_note ?name2 .
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement