使用 SPARQL 确定特定三元组是否存在
如果数据集是:
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix : <http://example.org/book/> .
@prefix ns: <http://example.org/ns#> .
:book1 dc:title "SPARQL Tutorial" .
:book2 dc:title "The Semantic Web" .
如何检查三元组 :book1 dc:title "SPARQL Tutorial" .
是否存在?
我可以执行 SELECT ?book where {?book dc:title "SPARQL Tutorial"}
但随后我必须进行后处理以确定是否检索到“book1”!
If the data set is:
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix : <http://example.org/book/> .
@prefix ns: <http://example.org/ns#> .
:book1 dc:title "SPARQL Tutorial" .
:book2 dc:title "The Semantic Web" .
How do I check that the triple :book1 dc:title "SPARQL Tutorial" .
exists?
I can do SELECT ?book where {?book dc:title "SPARQL Tutorial"}
but then I have to do post processing to determine if 'book1' was retrieved!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)