4

是否可以在 SPARQL 查询中以某种方式使用数值作为字符串值?例如,考虑以下 RDF 数据、查询和所需结果:

知识库

@prefix gr:  <http://purl.org/goodrelations/v1#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.

:o a gr:QuantitativeValueFloat;
     gr:hasMinValueFloat "1,0"^^xsd:float
     gr:hasMaxValueFloat "10,0"^^xsd:float

询问

PREFIX gr: <http://purl.org/goodrelations/v1#>    
SELECT ?o ?v
WHERE {
  ?o a gr:QuantitativeValueFloat;
       gr:hasMinValueFloat ?vMin;
       gr:hasMaxValueFloat ?vMax.
  CONCAT((?vMin, ?vMax) as ?v)
}

理想结果

-----------------
| o  | v        | 
=================
| :o | 1,0-10,0 | 
-----------------
4

1 回答 1

8

在 RDF 中,所有文字都具有可以通过str函数获得的词法形式。SPARQL 还包括某些类型文字的速记。例如,你可以写1而不是"1"^^xsd:integer,但它们是一样的,你可以通过str(1)str("1"^^xsd:integer得到"1" ) . 这意味着你可以用strconcat做你想做的事情:

select ?xy where {
  values ?x { 1   }  #-- short for "1"^^xsd:integer
  values ?y { 2.5 }  #-- short for "2.5"^^xsd:decimal

  bind(concat(str(?x),"--",str(?y)) as ?xy)
}

------------
| xy       |
============
| "1--2.5" |
------------

这应该可以工作,即使文字的词法形式对于该数据类型是不合法的,就像在你有"10,0"^^xd:float的数据中,它应该是"10.0"^^xsd:float,使用点 ( . ) 而不是逗号 ( , )。(我意识到分隔符有不同的约定,但 SPARQL 使用点。)

于 2015-05-15T18:54:12.480 回答