0

我正在尝试在 DBPedia 上执行此 Sparql 查询,它似乎忽略了DISTINCT

SELECT DISTINCT ?source ?title ?content ?topic
            WHERE {
                ?source rdfs:label ?title ;
                <http://dbpedia.org/ontology/abstract> ?content ;
                foaf:isPrimaryTopicOf ?topic .
                ?title bif:contains "php" .
}

事实上,如果您尝试运行查询,结果是这样的:

我正在从 python 文件运行查询,此代码返回 json:

query_rdf = ""
query_rdf += '''
              SELECT DISTINCT ?source ?title ?content ?topic
                WHERE {
                        ?source rdfs:label ?title ;
                        <http://dbpedia.org/ontology/abstract> ?content ;
                        foaf:isPrimaryTopicOf ?topic .
                        ?title bif:contains "php" . 
                }
        '''      
__3store = "http://dbpedia.org/sparql"       
sparql = SPARQLWrapper (__3store,returnFormat="json")
sparql.setQuery(query_rdf)
result = sparql.query().convert()
print json.dumps(result, separators=(',',':'))
4

1 回答 1

2

DISTINCT 关键字意味着每一作为一个整体,与其他行不同。在您显示的结果中,我看到了英语 (en)、西班牙语 (es) 和阿拉伯语 (ar) 的标签和摘要。如果您有以下数据:

:a rdfs:label "..."@en, "..."@es ;
   dbpedia-owl:abstract "..."@en, "..."@es ;
   foaf:isPrimaryTopicOf :aa .

然后你运行一个查询

select distinct ?source ?label ?abstract ?topic where {
  ?source rdfs:label ?label ;
          dbpedia-owl:abstract ?abstract ;
          foaf:isPrimaryTopicOf ?topic
}

您将在结果中获得四行,因为有四种不同的组合:

1 个来源 × 2 个标签 × 2 个摘要 × 1 个主题 = 4 行

如果您想将标签和摘要限制为单一语言(例如英语),那么您只需要过滤结果。例如:

select distinct ?source ?label ?abstract ?topic where {
  ?source rdfs:label ?label ;
          dbpedia-owl:abstract ?abstract ;
          foaf:isPrimaryTopicOf ?topic .
          ?label bif:contains "php" . 
  filter( langMatches(lang(?label),"en")
          && langMatches(lang(?abstract),"en") )
}

SPARQL 结果

于 2015-02-10T16:35:30.833 回答