如果您可以提供我们可以查询的实际数据,总是会更容易。以后请提供我们可以查询的数据。因为那时我们实际上可以针对它测试查询。无论如何,这是一个非常简单的数据集,其中包含两种资源,一种具有 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 .
您可以使用datatype函数过滤您想要的特定数据类型:
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> |
-----------------------------------------------------------