代码之家  ›  专栏  ›  技术社区  ›  significance

使用SPARQL确定是否存在特定的三元组

  •  4
  • significance  · 技术社区  · 14 年前

    @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"}

    1 回复  |  直到 8 年前
        1
  •  4
  •   significance    14 年前
    ASK  { ?book dc:title "SPARQL Tutorial" }