Project:SPARQL/examples: Difference between revisions

From Addshore Alpha
Jump to navigation Jump to search
(first example)
m (switch to <sparql> for a test with tryit...)
Line 3: Line 3:
===Select All Triples===
===Select All Triples===


<syntaxhighlight>
<sparql tryit="1">
SELECT * WHERE { ?a ?b ?c }
SELECT * WHERE { ?a ?b ?c }
</syntaxhighlight>
</sparql>

Revision as of 13:04, 2 February 2020

Examples

Select All Triples

SELECT * WHERE { ?a ?b ?c }

Try it!