我能够从 DBpedia 查询运动员数据,或特定运动(例如篮球)的数据,但有没有办法检索奥运选手数据?
SELECT * WHERE {
?player a <http://dbpedia.org/ontology/Athlete> .
?player foaf:name ?firstname .
?player foaf:surname ?lastname .
?player <http://dbpedia.org/ontology/birthDate> ?birthDate .
?player <http://dbpedia.org/ontology/Person/height> ?height .
?player <http://dbpedia.org/ontology/Person/weight> ?weight .
}