CREATE SERVER agrovoc FOREIGN DATA WRAPPER rdf_fdw OPTIONS ( endpoint 'https://agrovoc.fao.org/sparql', format 'application/sparql-results+xml' ); /* * Food and Agriculture Organization of the United Nations * * Select all concepts that point to c_5993 (plants) as broader and show their German (de) prefLabels * Source: https://agrovoc.fao.org/sparql */ CREATE FOREIGN TABLE plants ( uri rdfnode OPTIONS (variable '?subject'), label rdfnode OPTIONS (variable '?label') ) SERVER agrovoc OPTIONS ( log_sparql 'true', sparql ' PREFIX skos: PREFIX skosxl: PREFIX xsd: SELECT ?subject ?label WHERE { ?subject a skos:Concept . ?subject skos:broader+ . ?subject skosxl:prefLabel ?xLabel . ?xLabel skosxl:literalForm ?label . } '); SELECT * FROM plants WHERE sparql.lang(label) = 'de';