SPARQL

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Luckas-bot (talk | contribs) at 11:49, 12 June 2010 (robot Adding: it:SPARQL). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

SPARQL (pronounced "sparkle"[1] ) is an RDF query language; its name is a recursive acronym that stands for SPARQL Protocol and RDF Query Language. It was standardized by the RDF Data Access Working Group (DAWG) of the World Wide Web Consortium, and is considered a key semantic web technology. On 15 January 2008, SPARQL became an official W3C Recommendation. [2]

SPARQL allows for a query to consist of triple patterns, conjunctions, disjunctions, and optional patterns.[3]

Implementations for multiple programming languages exist.[4] "SPARQL will make a huge difference" according to Sir Tim Berners-Lee in a May 2006 interview. [5]

Benefits

SPARQL allows users to write globally unambiguous queries. For example, the following query returns names and emails of every person in the world...

PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?email
WHERE {
  ?person a foaf:Person.
  ?person foaf:name ?name.
  ?person foaf:mbox ?email.
}

...assuming the ontologies in use to describe a person eventually converge to FOAF. This illustrates the Semantic Web's vision of treating the Web as a single enormous database. Notice that this global unambiguity roots in the fact that every identifier in SPARQL, URI, is globally unambiguous, unlike "email" or "e-mail" normally used in SQL.

This query can be distributed to multiple SPARQL endpoints, computed distributedly, and results gathered, a procedure known as federated query.

Example

Another SPARQL query example that models the question "What are all the country capitals in Africa?":

PREFIX abc: <http://example.com/exampleOntology#>
SELECT ?capital ?country
WHERE {
  ?x abc:cityname ?capital ;
     abc:isCapitalOf ?y .
  ?y abc:countryname ?country ;
     abc:isInContinent abc:Africa .
}

Variables are indicated by a "?" or "$" prefix. Bindings for ?capital and the ?country will be returned.

The SPARQL query processor will search for sets of triples that match these four triple patterns, binding the variables in the query to the corresponding parts of each triple. Important to note here is the "property orientation" (class matches can be conducted solely through class-attributes / properties - see Duck typing)

To make queries concise, SPARQL allows the definition of prefixes and base URIs in a fashion similar to Turtle. In this query, the prefix "abc" stands for “http://example.com/exampleOntology#”.

References

  1. ^ Jim Rapoza (May 2, 2006). "SPARQL Will Make the Web Shine". eWeek. Retrieved 2007-01-17.
  2. ^ "W3C Semantic Web Activity News - SPARQL is a Recommendation". W3.org. 2008-01-15. Retrieved 2009-10-01.
  3. ^ "XML and Web Services In The News". xml.org. 6 October 2006. Retrieved 2007-01-17.
  4. ^ "SparqlImplementations - ESW Wiki". Esw.w3.org. Retrieved 2009-10-01.
  5. ^ Reuters (22 May 2006). "Berners-Lee looks for Web's big leap". zdnet.co.uk. Retrieved 2007-01-17. {{cite news}}: |author= has generic name (help)[dead link]

External links