mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-04 06:29:07 +02:00
8 lines
153 B
SPARQL
8 lines
153 B
SPARQL
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
SELECT ?de
|
|
WHERE
|
|
{
|
|
[ rdfs:label ?de, "Database Management"@en ].
|
|
FILTER ( lang(?de) = "de" )
|
|
}
|