Last active
August 29, 2015 14:23
-
-
Save balkian/dfd1fbc0c7e65e5e7634 to your computer and use it in GitHub Desktop.
Look for demonyms in dbpedia
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
select distinct ?a ?b where {?a <http://dbpedia.org/ontology/demonym> ?b} LIMIT 100 |
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
select distinct ?country | |
where { | |
?country <http://dbpedia.org/ontology/demonym> ?dem | |
FILTER regex(?dem, "^Spanish") | |
} LIMIT 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment