从 dbpedia 获取 sparql 中的日期
我想提取一些特定电影的发行日期。 我使用的 sparql 查询是: 甚至一个查询都没有给我任何答案 因为日期以某种格式返回,所以有问题吗? 你能告诉我有什么问题吗
SELECT ?star
WHERE {
<http://dbpedia.org/page/Chances_Are_%28film%29> dbpedia-owl:releaseDate ?star
}
SELECT ?star
WHERE {
<http://dbpedia.org/page/Cages> dbpprop:releaseDate ?star
}
SELECT ?star
WHERE {
<http://dbpedia.org/page/Los_que_no_deben_nacer> dbpprop:released ?star
}
I want to extract the release date of some specific movies.
The sparql query, I am using is:
Not even one query is giving me any answer
Is there something wrong becoz date is returned in some format?
Could you tell me any thing wat is going wrong
SELECT ?star
WHERE {
<http://dbpedia.org/page/Chances_Are_%28film%29> dbpedia-owl:releaseDate ?star
}
SELECT ?star
WHERE {
<http://dbpedia.org/page/Cages> dbpprop:releaseDate ?star
}
SELECT ?star
WHERE {
<http://dbpedia.org/page/Los_que_no_deben_nacer> dbpprop:released ?star
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您用于电影资源的 URI 错误 - 您应该将“页面”替换为“资源”: http://dbpedia.org/resource/Chances_Are_%28film%29
您可以看到查询得到了您需要的结果这里。
请注意,实际的资源 URI 是带有“resource”的 URI。带有“页面”的页面是您在浏览器中解析原始页面时重定向到的页面。因此,将来的 SPARQL 查询将使用“资源”而不是页面。
The URI you are using for the Movie resource is wrong - you should replace "page" with "resource": http://dbpedia.org/resource/Chances_Are_%28film%29
You can see that the query getting the results you need here.
Note that the actual resource URI is the one with "resource" on it. The one with the "page" is the one you are redirected to when you resolve the original one in a browser. So in future SPARQL queries use "resource" instead of page.