我使用以下查询从DBpedia获取运动员数据:
SELECT * WHERE {
?player a <http://dbpedia.org/ontology/Athlete> .
?player foaf:name ?firstname .
?player foaf:surname ?lastname .
?player <http://dbpedia.org/ontology/country> ?birthplace .
?player <http://dbpedia.org/ontology/birthDate> ?birthDate .
?player <http://dbpedia.org/ontology/Person/height> ?height .
?player <http://dbpedia.org/ontology/Person/weight> ?weight .
}但我只拿回了300张唱片。这里有什么问题?
发布于 2015-10-22 12:28:54
把最后四个作为可选的。
https://stackoverflow.com/questions/33272285
复制相似问题