简体   繁体   中英

SPARQL Query on DBpedia for group operation

I want to be able to contruct a graph with weight and height of Golf player from DBpedia. Please help as I am new to this

Looking at some examples , it seems that DBpedia does not have information about the weight of golf players. It does have height , though. Here is an example of how you could query for it in SPARQL:

PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT ?subject ?height
WHERE {
  ?subject a dbo:GolfPlayer ;
    dbo:height ?height .
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM