14 lines
378 B
Plaintext
14 lines
378 B
Plaintext
PREFIX dbo: <http://dbpedia.org/ontology/>
|
|
PREFIX res: <http://dbpedia.org/resource/>
|
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
|
SELECT DISTINCT ?uri
|
|
WHERE {
|
|
?uri rdf:type dbo:Company .
|
|
{ ?uri dbo:location res:Munich . }
|
|
UNION
|
|
{ ?uri dbo:headquarter res:Munich . }
|
|
UNION
|
|
{ ?uri dbo:locationCity res:Munich . }
|
|
}
|
|
|