如何进行 SPARQL 查询来查找属性的最高值?

发布于 2024-10-14 11:16:47 字数 67 浏览 7 评论 0原文

假设我有一个像“age”这样的谓词,其中所有年龄三元组的值都是整数。哪个 SPARQL 查询会返回数据中年龄最高的主题?

Lets say I have a predicate like 'age' where the values of all age triples are integer literals. What SPARQL query would return the subject with the highest age in the data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如梦 2024-10-21 11:16:47

您只需使用年龄谓词进行 order by desc 操作,然后使用 limit 即可获取第一个。

PREFIX ns:    <http://namespace.org/ontology/>
SELECT ?s ?age
WHERE { ?s ns:age ?age }
ORDER BY DESC(?age) LIMIT 1

请在此处查看 SPARQL 中 order by 的语义< /a>

在 SPARQL 的下一版本 1.1 中,某些系统已支持该版本,您可以使用函数聚合并执行 ..

SELECT (max(?age) as ?maxage)
WHERE { ?s ns:age ?age }

当前所有三元组存储均不支持此功能。

You just need to do order by desc with the age predicate and then limit to just get the first one.

PREFIX ns:    <http://namespace.org/ontology/>
SELECT ?s ?age
WHERE { ?s ns:age ?age }
ORDER BY DESC(?age) LIMIT 1

See the semantics of order by in SPARQL here

With the next version of SPARQL , 1.1, that is already supported in some systems you can use function aggregates and do ..

SELECT (max(?age) as ?maxage)
WHERE { ?s ns:age ?age }

This is not supported in all triple stores currently.

你的心境我的脸 2024-10-21 11:16:47

除了 Manuel 的查询之外,如果您的数据有一些无效/不可靠的值,您可能还需要使用 xsd:integer 强制将值转换为整数:

PREFIX ns:    <http://namespace.org/ontology/>
PREFIX xsd:   <http://www.w3.org/2001/XMLSchema#>
SELECT ?s ?age
WHERE { ?s ns:age ?age }
ORDER BY DESC(xsd:integer(?age)) LIMIT 1

根据您的数据,您可能需要将其添加到他的还有第二个 SPARQL 1.1 查询。

In addition to Manuel's queries you may need to use xsd:integer to force values to be cast to integer if your data has some invalid/dodgy values:

PREFIX ns:    <http://namespace.org/ontology/>
PREFIX xsd:   <http://www.w3.org/2001/XMLSchema#>
SELECT ?s ?age
WHERE { ?s ns:age ?age }
ORDER BY DESC(xsd:integer(?age)) LIMIT 1

Depending on your data you may need to add this into his second SPARQL 1.1 query as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文