我想编写一个sparql查询来从DBPedia中提取所有谓词,它们的主题是Person
,而它们的对象是Date Literals。
这是我的查询:
SELECT ?o ?p ?d
from <http://dbpedia.org>
where{
?o <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>.
?d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/property/date>.
?o ?p ?d.
}
查询没有显示任何结果,看来我必须以另一种方式定义日期文字。我想知道什么是定义文字类型的正确方法。