DBpedia Query: SnorQL VS SparQL VS QueryBuilder?

2019-05-21 04:22发布

What are http://dbpedia.org/snorql/ and http://dbpedia.org/sparql/ and http://querybuilder.dbpedia.org/ ?

Both SnorQL VS SparQL seems to run the following code similarly :

SELECT ?resource ?value
WHERE { 
   ?resource a <http://dbpedia.org/class/yago/CitiesAndTownsInDenmark> .
   ?resource <http://dbpedia.org/property/populationTotal> ?value .
   FILTER (?value > 100000)
}
ORDER BY ?resource ?value

1条回答
男人必须洒脱
2楼-- · 2019-05-21 04:49

They are (different) user interfaces that let you build and execute SPARQL queries on the DBpedia SPARQL endpoint http://dbpedia.org/sparql/.

The results should be the same in all three environments, because they use the same endpoint (thus the same data).

查看更多
登录 后发表回答