SPARQL Examples: Difference between revisions
From info216
No edit summary |
|||
Line 5: | Line 5: | ||
===Limit=== | ===Limit=== | ||
<syntaxhighlight> | <syntaxhighlight> | ||
</syntaxhighlight> | SELECT ?p WHERE { | ||
?s ?p ?o . | |||
} | |||
LIMIT 10</syntaxhighlight> | |||
===Limit=== | ===Limit=== | ||
<syntaxhighlight> | <syntaxhighlight> | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 14:14, 31 January 2023
Lecture 3:SPARQL
The KG4News knowledge graph can be accessed [here].
Limit
SELECT ?p WHERE {
?s ?p ?o .
}
LIMIT 10