本文介绍了组合并不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经编写了一个不使用GROUP_CONCAT的查询,并返回了9行,每行对应于爱因斯坦从事的每个职业。
当我将GROUP_CONCAT添加到LOCATION列时,该列为空。我不明白我到底做错了什么。我希望看到的是1行,所有9个职业都在职业一栏中。这是一个简单的查询。
SELECT ?item ?itemLabel ?genderLabel (GROUP_CONCAT(?occupationLabel) AS ?occupations)
WHERE {
?item wdt:P31 wd:Q5.
?item ?label "Albert Einstein"@en.
?item wdt:P21 ?gender .
?item wdt:P106 ?occupation .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?item ?itemLabel ?genderLabel
编辑:
以下是生成重复值的代码。
SELECT ?item ?itemLabel ?genderLabel (GROUP_CONCAT(?occupationLabel) AS ?occupations)
WHERE {
?item wdt:P31 wd:Q5.
?item ?label "Albert Einstein"@en.
?item wdt:P21 ?gender .
OPTIONAL {
?item wdt:P106 ?occupation .
?occupation rdfs:label ?occupationLabel
FILTER(LANGMATCHES(LANG(?occupationLabel), 'en'))
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?item ?itemLabel ?genderLabel
运行此查询得到以下信息:
教授和物理学家重复
第二次编辑
还值得注意的是,当我将查询修改为不使用rdfs:label
时,我在Ococation列中得到了正确的连接结果(我已经在URL中添加了圆括号和标签):
http://www.wikidata.org/entity/Q121594 (professor)
http://www.wikidata.org/entity/Q169470 (physicist)
http://www.wikidata.org/entity/Q205375 (inventor)
http://www.wikidata.org/entity/Q1231865 (educationalist)
http://www.wikidata.org/entity/Q1622272 (university teacher)
http://www.wikidata.org/entity/Q3745071 (science writer)
http://www.wikidata.org/entity/Q15980158 (non-fiction writer)
http://www.wikidata.org/entity/Q16389557 (philosopher of science)
http://www.wikidata.org/entity/Q19350898(theoretical physicist)
所以,我想我现在的问题是,每个ID可以得到一个标签吗?
推荐答案
粗略的想法是使用专用的SPARQL三元组模式来获取标签,而不是"标签服务":
SELECT ?item ?itemLabel ?genderLabel (GROUP_CONCAT(?occupationLabel) AS ?occupations)
WHERE {
?item wdt:P31 wd:Q5.
?item ?label "Albert Einstein"@en.
?item wdt:P21 ?gender .
OPTIONAL {
?item wdt:P106 ?occupation .
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en".
?item rdfs:label ?itemLabel .
?gender rdfs:label ?genderLabel .
?occupation rdfs:label ?occupationLabel
}
}
GROUP BY ?item ?itemLabel ?genderLabel
这篇关于组合并不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!