mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-03 17:39:25 +02:00
10 lines
228 B
SPARQL
10 lines
228 B
SPARQL
PREFIX ex: <http://example.org/ex#>
|
|
EXPLAIN SELECT $number $name (3 + $number) AS foo COUNT(*) AS bar
|
|
FROM <data.rdf>
|
|
WHERE {
|
|
$r a ex:Class ;
|
|
ex:numPred $number ;
|
|
ex:stringPred $name .
|
|
}
|
|
GROUP BY $name ORDER BY $number
|