annotate src/sparql/select_all.sparql @ 94:fedf516f6a78 tip

test file
author stevenh
date Mon, 29 Dec 2014 15:16:22 +0000
parents 08675ab08e7f
children
rev   line source
steve@0 1 PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
steve@0 2 PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
steve@0 3 PREFIX owl: <http://www.w3.org/2002/07/owl#>
steve@0 4 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
steve@0 5 PREFIX abc: <http://example.org/abc#>
steve@0 6 PREFIX seq: <http://example.org/seq#>
steve@0 7 PREFIX sia: <http://example.org/sia#>
steve@0 8
steve@0 9 SELECT ?s ?p ?o
steve@0 10 WHERE
steve@0 11 {
steve@0 12 ?s ?p ?o
steve@0 13 }
steve@0 14 ORDER BY ?s ?p ?o