The first SPARQL select query
Public
This is a very simple select query. But it already contains all three main select query components:
- Projection
- The columns that are returned (
select ?s ?p ?o) - Triple Pattern
- How the cells will be filled based on graph matching (
?s ?p ?o.) - Result set modifiers
- Adaptations to the result table (
limit)