Changes between Version 11 and Version 12 of SparqlTutorial

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

--

Legend:

Unmodified
Added
Removed
Modified
  • SparqlTutorial

    v11 v12  
    2626 
    2727In a triple store, I have the label of the predicate. 
     28 
     29Sample queries 
     30{{{ 
     31select * 
     32where {?s ?p ?o} 
     33limit 100 
     34}}} 
     35 
     36{{{ 
     37select ?o count(*) 
     38where {?s a ?o} 
     39}}}