Advertisement
Guest User

Untitled

a guest
May 24th, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARK 0.37 KB | None | 0 0
  1. PREFIX dbo: <http://dbpedia.org/ontology/>
  2. PREFIX res: <http://dbpedia.org/resource/>
  3. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  4. SELECT DISTINCT ?uri ?polish ?english
  5. WHERE {
  6.     res:Poland dbo:currency ?uri .
  7.         OPTIONAL { ?uri rdfs:label ?polish. FILTER (lang(?polish) = 'pl') }
  8.         OPTIONAL { ?uri rdfs:label ?english. FILTER (lang(?english) = 'en') }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement