Changes between Version 21 and Version 22 of SparqlTutorial
- Timestamp:
- 2010/02/10 12:23:23 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SparqlTutorial
v21 v22 96 96 } 97 97 }}} 98 99 {{{ 100 select ?t ?p 101 where { 102 ?s a ?t . 103 ?s ?p ?o . 104 } 105 order by ?t 106 }}} 107 108 {{{ 109 select ?o1 ?p ?o2 count(*) 110 where { 111 ?s1 a ?o1 . 112 ?s2 a ?o2 . 113 ?s1 ?p ?s2 . 114 FILTER (?o1 != ?o2) 115 } 116 }}}