gpt4 book ai didi

semantics - 在 SPARQL 中计数

转载 作者:行者123 更新时间:2023-12-02 03:24:42 24 4
gpt4 key购买 nike

好的,我有这个查询

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> 

SELECT DISTINCT (COUNT(?instance) AS ?count) WHERE {
?instance a <http://dbpedia.org/ontology/Ambassador> .
}

结果是 286。很酷。现在我想获得有 http://dbpedia.org/property/name 的大使数量属性(property)。但是

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> 

SELECT DISTINCT (COUNT(?instance) AS ?count) WHERE {
?instance a <http://dbpedia.org/ontology/Ambassador> .
?instance <http://dbpedia.org/property/name> ?name
}

结果为 533 :(。所以它计数更多,因为有人一次或多次拥有此属性。但是我如何获得拥有此属性的大使数量,无论他们拥有多少次。可以您在单个查询中执行此操作吗?

谢谢。

最佳答案

您可能想尝试一下:

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> 

SELECT (COUNT(DISTINCT ?instance) AS ?count) WHERE {
?instance a <http://dbpedia.org/ontology/Ambassador>;
<http://dbpedia.org/property/name> ?name
}

它给我的结果是 283,这可能正确也可能不正确:)。

关于semantics - 在 SPARQL 中计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5966410/

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