Changes between Version 8 and Version 9 of SparqlTutorial
- Timestamp:
- 2010/02/10 10:36:03 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SparqlTutorial
v8 v9 14 14 * http://dbpedia.org/fct 15 15 16 {{{ 17 select ?s2 as ?c1 count (*) as ?c2 18 where { 19 ?s1 ?s1textp ?o1 . 20 ?o1 bif:contains '"hexokinase"' . 21 ?s1 a <http://purl.uniprot.org/core/Sequence> . 22 ?s1 a <http://purl.uniprot.org/core/Citation_Statement> . 23 ?s1 <http://purl.uniprot.org/core/memberOf> ?s2 . 24 group by ?s2 order by desc 2 limit 20 offset 0 25 }}}