This HTML5 document contains 40 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
dctermshttp://purl.org/dc/terms/
n7http://bit.ly/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n5http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n13http://host:port/
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n19http://virtuoso.openlinksw.com/tutorials/sparql/SPARQL_Tutorials_Part_9/SPARQL_Tutorials_Part_9.
n12http://docs.openlinksw.com/virtuoso/rdfsparql.
dchttp://purl.org/dc/elements/1.1/
n18http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n6http://rdfs.org/sioc/services#
n14http://vos.openlinksw.com/dataspace/person/dav#
siocthttp://rdfs.org/sioc/types#
n11http://vos.openlinksw.com/dataspace/owiki/wiki/
n9http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtTipsAndTricksSPARQL11VALUES/sioc.
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n22http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n16http://vos.openlinksw.com/dataspace/person/owiki#
n17http://www.w3.org/TR/sparql11-query/#
siochttp://rdfs.org/sioc/ns#
Subject Item
n14:this
foaf:made
n2:VirtTipsAndTricksSPARQL11VALUES
Subject Item
n18:this
sioc:creator_of
n2:VirtTipsAndTricksSPARQL11VALUES
Subject Item
n5:item
n6:services_of
n2:VirtTipsAndTricksSPARQL11VALUES
Subject Item
n22:this
sioc:creator_of
n2:VirtTipsAndTricksSPARQL11VALUES
Subject Item
n11:VOS
sioc:container_of
n2:VirtTipsAndTricksSPARQL11VALUES
atom:entry
n2:VirtTipsAndTricksSPARQL11VALUES
atom:contains
n2:VirtTipsAndTricksSPARQL11VALUES
Subject Item
n2:VirtTipsAndTricksSPARQL11VALUES
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:47:55.828513
dcterms:modified
2017-06-13T05:47:55.828513
rdfs:label
VirtTipsAndTricksSPARQL11VALUES
foaf:maker
n14:this n16:this
dc:title
VirtTipsAndTricksSPARQL11VALUES
opl:isDescribedUsing
n9:rdf
sioc:has_creator
n18:this n22:this
sioc:content
%META:TOPICPARENT{name="VirtTipsAndTricksSPARQL11FeaturesExamplesCollection"}% ---+Virtuoso SPARQL 1.1. VALUES Usage Examples ---++What? This guide contains Virtuoso SPARQL 1.1. VALUES Usage example queries which you can run against any SPARQL endpoint that supports SPARQL 1.1 and the ability to allow a verified user perform INSERT operations. ---++Why? SPARQL 1.1 provides a mechanism for inline incorporation of Data as part SPARQL query patterns. ---++How? Here are some examples showcasing Virtuoso's support for this functionality: 1 Assume the following statement for inserting triples INTO DBMS or Store: <verbatim> PREFIX : <http://example.org/book/> PREFIX ns: <http://example.org/ns#> INSERT { GRAPH <urn:sparql:bind:tests> { :book1 <http://purl.org/dc/elements/1.1/title> "SPARQL Tutorial" . :book1 ns:price 42 . :book1 ns:discount 0.2 . :book2 <http://purl.org/dc/elements/1.1/title> "The Semantic Web" . :book2 ns:price 23 . :book2 ns:discount 0.25 . } } </verbatim> 1 From a Virtuoso SPARQL Endpoint ( http://host:port/sparql ) query the graph by executing the query from below for ex.: <verbatim> PREFIX : <http://example.org/book/> PREFIX ns: <http://example.org/ns#> SELECT ?book ?title ?price FROM <urn:sparql:bind:tests> WHERE { VALUES ?book { :book1 :book3 } ?book <http://purl.org/dc/elements/1.1/title> ?title ; ns:price ?price . } </verbatim> 1 [[http://bit.ly/1mHUVGI][View the SPARQL Query Definition via SPARQL Protocol URL]]; 1 [[http://bit.ly/1i75jDz][View the SPARQL Query Results via SPARQL Protocol URL]]; 1 Alternative variant of the query: <verbatim> PREFIX : <http://example.org/book/> PREFIX ns: <http://example.org/ns#> SELECT ?book ?title ?price FROM <urn:sparql:bind:tests> WHERE { ?book <http://purl.org/dc/elements/1.1/title> ?title ; ns:price ?price . VALUES (?book ?title) { (UNDEF "SPARQL Tutorial") (:book2 UNDEF) } } </verbatim> 1 [[http://bit.ly/1fRt1Dz][View the SPARQL Query Definition via SPARQL Protocol URL]]; 1 [[http://bit.ly/VnjeeG][View the SPARQL Query Results via SPARQL Protocol URL]]. ---++Related * [[http://www.w3.org/TR/sparql11-query/#inline-data][SPARQL 1.1. inline data via use of VALUES clause]] * [[VirtTipsAndTricksGuide][Virtuoso Tips and Tricks Collection]] * [[VirtTipsAndTricksSPARQL11FeaturesExamplesCollection][Virtuoso SPARQL 1.1 Usage Examples Collection]] * [[http://virtuoso.openlinksw.com/tutorials/sparql/SPARQL_Tutorials_Part_9/SPARQL_Tutorials_Part_9.html][Virtuoso SPARQL 1.1 Syntax Tutorial]] * [[http://bit.ly/U0q7Hb][Virtuoso SPARQL 1.1 VALUES Tutorial]] * [[http://bit.ly/Uo5hP6][Virtuoso SPASQL And SPARQL Tutorial]] * [[http://docs.openlinksw.com/virtuoso/rdfsparql.html][Virtuoso Documentation]]
sioc:id
56815435650eafb914c1cbe3b0e3f668
sioc:link
n2:VirtTipsAndTricksSPARQL11VALUES
sioc:has_container
n11:VOS
n6:has_services
n5:item
atom:title
VirtTipsAndTricksSPARQL11VALUES
sioc:links_to
n7:Uo5hP6 n12:html n13:sparql n17:inline-data n19:html n7:U0q7Hb n7:1fRt1Dz n7:VnjeeG n7:1mHUVGI n7:1i75jDz n2:VirtTipsAndTricksSPARQL11FeaturesExamplesCollection
atom:source
n11:VOS
atom:author
n14:this
atom:published
2017-06-13T05:47:55Z
atom:updated
2017-06-13T05:47:55Z
sioc:topic
n11:VOS