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

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

PrefixNamespace IRI
n16http://lod.openlinksw.com/sparql?default-graph-uri=&query=SELECT+COUNT%28*%29+%0D%0AWHERE+%0D%0A++%7B%0D%0A++++%3Fs+%3Fp+%22Novosibirsk%22++FILTER+NOT+EXISTS+%7B+%3Fs+%3Fp+%22%D0%9D%D0%BE%D0%B2%D0%BE%D1%81%D0%B8%D0%B1%D0%B8%D1%80%D1%81%D0%BA%22+%7D+%0D%0A++%7D&should-sponge=&format=text%2Fhtml&CXML_redir_for_subjs=121&CXML_redir_for_hrefs=&timeout=15000&debug=
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n13http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n9http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtTipsAndTricksGuideSPARQLMINUS/sioc.
n14http://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#
n12http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n11http://vos.openlinksw.com/dataspace/person/dav#
n17http://lod.openlinksw.com/sparql?default-graph-uri=&query=SELECT+COUNT%28*%29+%0D%0AWHERE+%0D%0A++%7B+%0D%0A++++%7B+%3Fs+%3Fp+%22Novosibirsk%22+%7D+MINUS+%7B+%3Fs+%3Fp+%22%D0%9D%D0%BE%D0%B2%D0%BE%D1%81%D0%B8%D0%B1%D0%B8%D1%80%D1%81%D0%BA%22+%7D%0D%0A++%7D&should-sponge=&format=text%2Fhtml&CXML_redir_for_subjs=121&CXML_redir_for_hrefs=&timeout=15000&debug=
n5http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n15http://vos.openlinksw.com/dataspace/owiki#
n21http://lod.openlinksw.
xsdhhttp://www.w3.org/2001/XMLSchema#
n22http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n11:this
foaf:made
n2:VirtTipsAndTricksGuideSPARQLMINUS
Subject Item
n18:this
sioc:creator_of
n2:VirtTipsAndTricksGuideSPARQLMINUS
Subject Item
n13:item
n12:services_of
n2:VirtTipsAndTricksGuideSPARQLMINUS
Subject Item
n15:this
sioc:creator_of
n2:VirtTipsAndTricksGuideSPARQLMINUS
Subject Item
n5:VOS
sioc:container_of
n2:VirtTipsAndTricksGuideSPARQLMINUS
atom:entry
n2:VirtTipsAndTricksGuideSPARQLMINUS
atom:contains
n2:VirtTipsAndTricksGuideSPARQLMINUS
Subject Item
n2:VirtTipsAndTricksGuideSPARQLMINUS
rdf:type
atom:Entry sioct:Comment
dcterms:created
2017-06-13T05:43:22.753369
dcterms:modified
2017-06-13T05:43:22.753369
rdfs:label
VirtTipsAndTricksGuideSPARQLMINUS
foaf:maker
n11:this n22:this
dc:title
VirtTipsAndTricksGuideSPARQLMINUS
opl:isDescribedUsing
n9:rdf
sioc:has_creator
n15:this n18:this
sioc:content
%META:TOPICPARENT{name="VirtTipsAndTricksGuide"}% ---+ How Do I use MINUS in a SPARQL query? Virtuoso supports the <code>MINUS</code> function of SPARQL 1.1, as shown below -- <verbatim> SQL> SPARQL SELECT COUNT(*) WHERE { { ?s ?p "Novosibirsk" } MINUS { ?s ?p "???????????" } } callret-0 INTEGER 313 No. of rows in result: 1 </verbatim> [[http://lod.openlinksw.com/sparql?default-graph-uri=&query=SELECT+COUNT%28*%29+%0D%0AWHERE+%0D%0A++%7B+%0D%0A++++%7B+%3Fs+%3Fp+%22Novosibirsk%22+%7D+MINUS+%7B+%3Fs+%3Fp+%22%D0%9D%D0%BE%D0%B2%D0%BE%D1%81%D0%B8%D0%B1%D0%B8%D1%80%D1%81%D0%BA%22+%7D%0D%0A++%7D&should-sponge=&format=text%2Fhtml&CXML_redir_for_subjs=121&CXML_redir_for_hrefs=&timeout=15000&debug=on][View the results]] of the query execution on the [[http://lod.openlinksw.com][LOD]] instance. This query is equivalent to the following query, also conforming to SPARQL 1.1 -- <verbatim> SQL> SPARQL SELECT COUNT(*) WHERE { ?s ?p "Novosibirsk" FILTER NOT EXISTS { ?s ?p "???????????" } } callret-0 INTEGER 313 No. of rows in result: 1 </verbatim> [[http://lod.openlinksw.com/sparql?default-graph-uri=&query=SELECT+COUNT%28*%29+%0D%0AWHERE+%0D%0A++%7B%0D%0A++++%3Fs+%3Fp+%22Novosibirsk%22++FILTER+NOT+EXISTS+%7B+%3Fs+%3Fp+%22%D0%9D%D0%BE%D0%B2%D0%BE%D1%81%D0%B8%D0%B1%D0%B8%D1%80%D1%81%D0%BA%22+%7D+%0D%0A++%7D&should-sponge=&format=text%2Fhtml&CXML_redir_for_subjs=121&CXML_redir_for_hrefs=&timeout=15000&debug=on][View the results]] of the query execution on the [[http://lod.openlinksw.com][LOD]] instance. ---++Related * [[VirtTipsAndTricksGuide][Virtuoso Tips and Tricks Collection]] * [[http://docs.openlinksw.com/virtuoso/rdfsparql.html][Virtuoso Documentation]]
sioc:id
9bcaf8441bd0c06ae51f7e333240ac1c
sioc:link
n2:VirtTipsAndTricksGuideSPARQLMINUS
sioc:has_container
n5:VOS
n12:has_services
n13:item
atom:title
VirtTipsAndTricksGuideSPARQLMINUS
sioc:links_to
n14:html n16:on n17:on n21:com
atom:source
n5:VOS
atom:author
n11:this
atom:published
2017-06-13T05:43:22Z
atom:updated
2017-06-13T05:43:22Z
sioc:topic
n5:VOS