Top "Sparql" questions

SPARQL (pronounced "sparkle", a recursive acronym for SPARQL Protocol and RDF Query Language) is a set of specifications by W3C that provide languages and protocols to query and manipulate RDF graph content on the Web or in an RDF store.

SPARQL query and distinct count

I have the following query: SELECT ?tag WHERE { ?r ns9:taggedWithTag ?tagresource. ?tagresource ns9:name ?tag } LIMIT 5000 and the results …

count sparql
Union of two selects in a SPARQL query

I'd like to do something like { SELECT ?page, "A" AS ?type WHERE { ?s rdfs:label "Microsoft"@en; foaf:page ?page } } …

sparql dbpedia
Extract triples containing particular substring using SPARQL

I want to extract a triple which contains word say "alice" in its subject. The query I used was: SELECT ?…

regex sparql
SPARQL: Get all the entities of subclasses of a certain class

I've to get all the instances of a class C and subclasses (direct or indirect) of C, in SPARQL. I …

entity instance subclass sparql
"or" in a SPARQL query

I don't quite understand why in SPARQL they haven't implemented the basic logic operators. However in most of the cases …

sparql linked-data stardog
Exploratory SPARQL queries?

whenever i start using sql i tend to throw a couple of exploratory statements at the database in order to …

rdf sparql
Triple Stores vs Relational Databases

I was wondering what are the advantages of using Triple Stores over a relational database?

relational-database sparql semantic-web jena
Graph Databases vs Triple Stores - when to use which?

I know that there are similar questions around on Stackoverflow but I don't feel they answer the following. Graph Databases …

neo4j sparql graph-databases orientdb triplestore
SPARQL Querying multiple ORs in the same filter

Ok lets assume I have 5 datatype properties with integers as values. These properties are asserted to individuals belonging to class "…

rdf sparql semantic-web ontology protege
Sorting SPARQL results by date

Is there a way to sort the results by creation date? Example query which must be sortet: SELECT * WHERE {?s ?…

sorting date sparql creation