Skip to content

Instantly share code, notes, and snippets.

@labra
Created September 23, 2015 16:53
Show Gist options
  • Save labra/08e62b4b70ed6c90137a to your computer and use it in GitHub Desktop.
Save labra/08e62b4b70ed6c90137a to your computer and use it in GitHub Desktop.
prefix qb: <http://purl.org/linked-data/cube#>
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix : <http://ejemplo.org/>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?pais ?area ?poblacion WHERE {
?obs :pais ?pais .
?obs :indicador :Poblacion .
?obs :valor ?poblacion .
?obs1 :pais ?pais .
?obs1 :indicador :Area .
?obs1 :valor ?area .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment