SPARQL 搜索 xsd:整数,没有小数



使用以下查询:

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX uni: <http://localhost/SemanticSearch/semanticsearch.owl#>
SELECT
    DISTINCT * 
WHERE {
    ?uri uni:altLabel "5"^^xsd:integer.
    ?uri rdf:type ?type
}

还返回具有altLabel xsd:decimal 5.x 的 URI我真的需要它只返回altLabel xsd:integer ?uri。有没有办法做到这一点?

如果您可以提供我们可以查询的实际数据,那总是更容易。 将来,请提供我们可以查询的数据。因为这样我们实际上可以针对它测试查询。 无论如何,这是一个非常简单的数据集,其中包含两个资源,一个具有 xsd:decimal 值,另一个具有 xsd:integer 值。

@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix uni: <http://localhost/SemanticSearch/semanticsearch.owl#>.
@prefix : <urn:ex:>.
:a uni:altLabel "5"^^xsd:integer ; a :somethingWithAnInteger .
:b uni:altLabel "5"^^xsd:decimal ; a :somethingWithADecimal .

您可以使用数据类型函数筛选所需的特定数据类型:

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX uni: <http://localhost/SemanticSearch/semanticsearch.owl#>
SELECT DISTINCT * WHERE {
  ?uri uni:altLabel ?altLabel .
  ?uri rdf:type ?type
  filter(?altLabel = "5"^^xsd:integer && datatype(?altLabel) = xsd:integer)
}

-----------------------------------------------------------
| uri        | altLabel | type                            |
===========================================================
| <urn:ex:a> | 5        | <urn:ex:somethingWithAnInteger> |
-----------------------------------------------------------

相关内容

  • 没有找到相关文章

最新更新