Changes between Version 20 and Version 21 of SparqlTutorial
- Timestamp:
- 2010/02/10 12:09:31 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SparqlTutorial
v20 v21 75 75 ?s ?p ?o . 76 76 ?s1 ?p1 ?s . 77 ?o bif:contains "hexokinase" . 77 78 } 78 79 }}} 80 81 '''?s1 ?p1 ?s''' is the JOIN of SPARQL. 82 83 {{{ 84 select count(*) 85 where { 86 ?s ?p ?o 87 } 88 }}} 89 90 This counts the number of triples in the database. 91 92 {{{ 93 select ?s count(*) 94 where { 95 ?s ?p ?o 96 } 97 }}}