SPARQL Flashcards

1
Q

What is SPARQL?

A

It is the query language for RDF graphs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the two main components of a SELECT query?

A
  1. List of selected variables
  2. Their accompanying triple patterns
    ~~~
    SELECT ?band
    WHERE {
    ?band rdf:type :Band .
    }
    ~~~
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is returned from a SELECT query?

A

A table where each variable is a column and each pattern match is a row

How well did you know this?
1
Not at all
2
3
4
5
Perfectly