我正在使用下一个查询从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条记录!!
有谁能告诉我这里有什么问题?
答案 0 :(得分:2)
将最后四个作为可选项。