gpt4 book ai didi

sparql - 在参与者的维基数据查询中应用 group_concat

转载 作者:行者123 更新时间:2023-12-03 23:13:20 30 4
gpt4 key购买 nike

我刚刚了解到 group_concatorder by , group by ,现在我正在尝试将它们应用于查询谋杀案。即,到下面的这个以获取所有参与者和目标。

SELECT DISTINCT ?incident ?label ?participant ?participantLabel ?target ?targetLabel
WHERE {
?incident wdt:P31 wd:Q132821.
?incident rdfs:label ?label.
optional{?incident wdt:P710 ?participant.}
optional{?incident wdt:P533 ?target. } }

我尝试申请 group_concatgroup by , order by . (在下面的 target 上没有做任何事情,因为即使这仅适用于参与者也不起作用):
SELECT DISTINCT ?incident ?label ?target ?targetLabel (group_concat(?participantLabel; separator=";") as ?participant)

WHERE {
?incident wdt:P31 wd:Q132821.
?incident rdfs:label ?label.
optional{?incident wdt:P710 ?participant.}
optional{?incident wdt:P533 ?target. }}
GROUP BY ?participant ?participantLabel
ORDER BY ?participantLabel

有人告诉我 Query is malformed: Bad aggregate .

是不是每个案例都有参与者?我该如何解决这个问题?

最佳答案

您需要从 wikidata 中阅读完整的错误消息。关键线在这里——

java.util.concurrent.ExecutionException: org.openrdf.query.MalformedQueryException: Bad aggregate
...
Caused by: org.openrdf.query.MalformedQueryException: Bad aggregate
...
Caused by: com.bigdata.rdf.sail.sparql.ast.VisitorException: Bad aggregate
...
Caused by: java.lang.IllegalArgumentException: Non-aggregate variable in select expression: incident

基本上,您 SELECT 中的所有非聚合变量也必须在您的 GROUP BY 中.通过我认为对您有益的其他一些调整,您的查询将变成这样——
SELECT DISTINCT ?incident 
?incidentLabel
?target
?targetLabel
( GROUP_CONCAT ( DISTINCT ?participantLabel; separator="; " ) AS ?participants )
WHERE
{
?incident wdt:P31 wd:Q132821 .
?incident rdfs:label ?incidentLabel .
FILTER ( LANGMATCHES ( LANG ( ?incidentLabel ), "en" ) )
OPTIONAL { ?incident wdt:P710 ?participant .
?participant rdfs:label ?participantLabel
FILTER ( LANGMATCHES ( LANG ( ?participantLabel ), "en" ) )
}
OPTIONAL { ?incident wdt:P533 ?target .
?target rdfs:label ?targetLabel
FILTER ( LANGMATCHES ( LANG ( ?targetLabel ), "en" ) )
}
}
GROUP BY ?incident ?incidentLabel ?target ?targetLabel
ORDER BY ?incidentLabel ?targetLabel

我无法解释结果集中出现的重复行(向下滚动到“1991 Vic 轰炸”)。这些应该已经被 SELECT DISTINCT 中的一个或两个消除了。和 GROUP BY .

关于sparql - 在参与者的维基数据查询中应用 group_concat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55285976/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com