Created
September 23, 2015 16:53
-
-
Save labra/08e62b4b70ed6c90137a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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