解决方法来查询 DBpedia 的两个关键字

发布于 2024-12-13 01:47:22 字数 285 浏览 1 评论 0原文

我想在 DBpedia 中查询多个关键字,显然我必须搜索精确的子字符串,因此如果我想要有关埃及金字塔的页面,搜索埃及金字塔将不会工作,但这正是我所需要的..

所以我想也许我可以通过搜索关系来看看“金字塔”这个概念是否与“埃及”有关,但我发现很难想出 顺便说一句,我通过以下方式查询所需的 sparql 查询

http://dbpedia.org/sparql

I want to query DBpedia for multiple keywords, apparently I have to search for an exact substring, so if I want the page about Egyptian Pyramids, searching for Egypt Pyramids won't work, but that's exactly what I need..

So I was thinking maybe I can see if the concept "Pyramids" has anything to do with "Egypt", by searching through the relations, but I am finding it difficult to come up with the sparql query needed for that

BTW I query through: http://dbpedia.org/sparql

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

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

发布评论

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

评论(1

滴情不沾 2024-12-20 01:47:22

尝试构建如下所示的 SPARQL 查询可能会很有用:

SELECT ?uri ?txt WHERE {
                  ?uri rdfs:label ?txt .
                  ?txt bif:contains "'Egypt' OR 'Pyramid'" .
                 }

或者您想要不同的东西吗?

Trying to construct a SPARQL query like the following might be useful:

SELECT ?uri ?txt WHERE {
                  ?uri rdfs:label ?txt .
                  ?txt bif:contains "'Egypt' OR 'Pyramid'" .
                 }

Or do you want something different?

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