relpipe-data/examples/rdf-heathers-quotes.sparql
branchv_0
changeset 310 aeda3cb4528d
equal deleted inserted replaced
309:71a627e72815 310:aeda3cb4528d
       
     1 PREFIX person:     <tag:heathers.globalcode.info,2020:person:>
       
     2 PREFIX predicate:  <tag:heathers.globalcode.info,2020:predicate:>
       
     3 PREFIX thing:      <tag:heathers.globalcode.info,2020:thing:>
       
     4 
       
     5 SELECT
       
     6 	?firstname
       
     7 	?surname
       
     8 	?quote
       
     9 WHERE {
       
    10 	?person predicate:says ?quote .
       
    11 	?person predicate:has-firstname ?firstname .
       
    12 	?person predicate:has-surname ?surname .
       
    13 }
       
    14 ORDER BY ?firstname ?surname ?quote