给定以下三元组:
s1 nameProperty "Bozo"
s1 laughProperty "Haha"
s1 valueProperty "2.00"^^xml:double
s2 nameProperty "Clown"
s2 laughProperty "hehe"
s2 valueProperty "3.00"^^xml:double
s3 nameProperty "Bozo"
s3 laughProperty "Haha"
s3 valueProperty "1.00"^^xml:double
我想合并同名的主题,并笑着总结它们的值,结果有点像:
s1 nameProperty "Bozo"
s1 laughProperty "Haha"
s1 valueProperty "3.00"^^xml:double
s2 nameProperty "Clown"
s2 laughProperty "hehe"
s2 valueProperty "3.00"^^xml:double
如何使用SPARQL以最高的效率执行此操作?(没有必要保留科目。只要具有合并值的新值共享相同的nameProperty
和laughProperty
,就可以插入它们。
如果您提供我们可以实际运行查询的数据,这通常会很有帮助。 这是与您的数据类似的数据,但我们实际上可以使用:
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix : <urn:ex:>
:s1 :nameProperty "Bozo".
:s1 :laughProperty "Haha".
:s1 :valueProperty "2.00"^^xsd:double.
:s2 :nameProperty "Clown".
:s2 :laughProperty "hehe".
:s2 :valueProperty "3.00"^^xsd:double.
:s3 :nameProperty "Bozo".
:s3 :laughProperty "Haha".
:s3 :valueProperty "1.00"^^xsd:double.
这是一个非常简单的构造查询。 唯一棘手的部分是,由于我们需要一个分组依据,我们必须使用嵌套的选择查询,以便我们可以使用 sum 和示例聚合函数。
prefix : <urn:ex:>
construct {
?clown :nameProperty ?name ;
:laughProperty ?laugh ;
:valueProperty ?total
}
where {
{ select (sample(?s) as ?clown) ?name ?laugh (sum(?value) as ?total) where {
?s :nameProperty ?name ;
:laughProperty ?laugh ;
:valueProperty ?value
}
group by ?name ?laugh }
}
结果(在 N3 和 N-Triples 中,只是为了确保 3.0e0 实际上是 xsd:double):
@prefix : <urn:ex:> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
:s3 :laughProperty "Haha" ;
:nameProperty "Bozo" ;
:valueProperty 3.0e0 .
:s2 :laughProperty "hehe" ;
:nameProperty "Clown" ;
:valueProperty "3.00"^^xsd:double .
<urn:ex:s2> <urn:ex:laughProperty> "hehe" .
<urn:ex:s2> <urn:ex:nameProperty> "Clown" .
<urn:ex:s2> <urn:ex:valueProperty> "3.00"^^<http://www.w3.org/2001/XMLSchema#double> .
<urn:ex:s3> <urn:ex:laughProperty> "Haha" .
<urn:ex:s3> <urn:ex:nameProperty> "Bozo" .
<urn:ex:s3> <urn:ex:valueProperty> "3.0e0"^^<http://www.w3.org/2001/XMLSchema#double> .