Daily Archives: September 7, 2009

The Language of Business

  The author of this article has summed up five points of semantic use for businesses. Read the article.

Your First SPARQL Query Steps

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 [...]