Beginner in DBPedia/SPARQL/Semantic data. I ran following queries to "find out the sport for each athlete"
select ?athlete ?sport where
{
?athlete rdf:type <http://dbpedia.org/ontology/Athlete>. #query1
?athlete dbpedia2:sport ?sport #query2
}
It does give results but not the full set that I am looking for. "query1" by itself returns more athletes but combined with "query2", I get a lot less resultset.
Please explain the discrepancy. Am I missing something? Whats the alternative?
Regards