gpt4 book ai didi

rdf - 使用 SPARQL 找到活着的人(选择没有优势的项目)

转载 作者:行者123 更新时间:2023-12-04 16:35:28 26 4
gpt4 key购买 nike

以下 sparql 查询将给出死者。

select distinct ?item{
?item <http://freebase.com/ns/common/topic/notable_types> <http://freebase.com/ns/people/person> .
?item <http://freebase.com/ns/people/deceased_person/date_of_death> ?y .
}

我想得到所有活着的人。
如何用 SPARQL 语法表达这一点?
它更像是问,让我所有没有特定边缘的节点。
在 SPARQL 中可能吗?

提前致谢。
任何帮助表示赞赏。

最佳答案

在 SPARQL 1.1 中

SELECT DISTINCT ?item {
?item <http://freebase.com/ns/common/topic/notable_types> <http://freebase.com/ns/people/person> .
FILTER NOT EXISTS { ?item <http://freebase.com/ns/people/deceased_person/date_of_death> ?y}
}

关于rdf - 使用 SPARQL 找到活着的人(选择没有优势的项目),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13894274/

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