mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 08:29:27 +02:00
11 lines
272 B
SPARQL
11 lines
272 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 .
|
|
FILTER ($number < 10 && $name != "foo")
|
|
}
|
|
GROUP BY $name ORDER BY $number
|