Advertisement
Guest User

Untitled

a guest
Dec 31st, 2015
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # filename: ex002.ttl
  2. @prefix ab: <http://learningsparql.com/ns/addressbook#> .
  3. ab:richard ab:homeTel "(229) 276-5135" .
  4. ab:richard ab:email "richard49@hotmail.com" .
  5. ab:cindy ab:homeTel "(245) 646-5488" .
  6. ab:cindy ab:email "cindym@gmail.com" .
  7. ab:craig ab:homeTel "(194) 966-1505" .
  8. ab:craig ab:email "craigellis@yahoo.com" .
  9. ab:craig ab:email "c.ellis@usairwaysgroup.com" .
  10.  
  11.  
  12.  
  13. # filename: ex003.rq
  14. PREFIX ab: <http://learningsparql.com/ns/addressbook#>
  15. SELECT ?craigEmail
  16. WHERE
  17. { ab:craig ab:email ?craigEmail . }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement