Daily Archives: September 7, 2009
Consider the following set of triples: subject predicate object countries:Germany rdf:type countries:Country countries:Switzerland rdf:type countries:Country countries:UnitedStates rdf:type countries:Country countries:UnitedStates rdfs:label "United States" countries:TheNetherlands rdfs:label "The Netherlands" Select all triples SPARQL Queries are build of statements and triples. When you look at the following query you see a SELECT statement. SELECT ?subject ?predicate ?object WHERE { ?subject ?predicate ?object } With this statement the result is a set of all existing triples. Within the [...]
