任何人都可以在任何文档中指出我在 SPARQL 中的有效UPDATE 语句(无论是 W3C、大师级、语义网页还是您自己的自定义代码等?
它必须具有 WHERE 规范,并且在单个查询中更新不止一个三元组。
谢谢。
编辑/示例:
这是我当前的代码,其目标是用INSERT 子句中指定的值替换dc:creator
,dc:title
的所有当前值。dc:description
这个查询在逻辑和语法上是否正确?
WITH GRAPH <http://127.0.0.1:3000/dendro_graph>
DELETE
{
:teste dc:creator ?o0 .
:teste dc:title ?o1 .
:teste dc:description ?o2 .
}
INSERT
{
:teste dc:creator "Creator%201" .
:teste dc:creator "Creator%202" .
:teste dc:title "Title%201" .
:teste dc:description "Description%201" .
}
WHERE
{
:teste dc:creator ?o0 .
:teste dc:title ?o1 .
:teste dc:description ?o2 .
}