Changes between Version 21 and Version 22 of SparqlTutorial

Show
Ignore:
Timestamp:
2010/02/10 12:23:23 (14 years ago)
Author:
akinjo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SparqlTutorial

    v21 v22  
    9696} 
    9797}}} 
     98 
     99{{{ 
     100select ?t ?p 
     101where { 
     102?s a ?t . 
     103?s ?p ?o . 
     104} 
     105order by ?t 
     106}}} 
     107 
     108{{{ 
     109select ?o1 ?p ?o2 count(*) 
     110where { 
     111?s1 a ?o1 . 
     112?s2 a ?o2 . 
     113?s1 ?p ?s2 . 
     114FILTER (?o1 != ?o2) 
     115} 
     116}}}