Changes between Version 15 and Version 16 of SparqlTutorial

Show
Ignore:
Timestamp:
2010/02/10 11:59:39 (14 years ago)
Author:
akinjo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SparqlTutorial

    v15 v16  
    4141 
    4242{{{ 
    43 select ?t count(*) 
     43select ?t ?p count(*) 
    4444 where { 
    4545?s ?p ?o . 
     
    5151 * '''bif:contains''' (full-text search) is not standard. 
    5252 * '''count(*)''' is not standard. 
     53 
     54{{{ 
     55select ?s ?p ?o 
     56 where { 
     57?s ?p ?o . 
     58?s rdf:type ?t . 
     59?o bif:contains "hexokinase" . 
     60} 
     61}}}