Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
519 views
in Technique[技术] by (71.8m points)

rdf - SPARQL query language tag weirdness

This works:

SELECT * WHERE{
?x rdfs:label "Chalti Ka Naam Gaadi"@en .
?x foaf:name ?z .    
}

(Results on DBpedia SPARQL Explorer)

This doesn't:

SELECT * WHERE{
?x foaf:name "Chalti Ka Naam Gaadi" .
?x rdfs:label ?z .    
}

(Results on DBpedia SPARQL Explorer)

Why?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Your issue is that plain literals with language tags: "Chalti Ka Naam Gaadi"@en

are not the same as plain literals without language tags: "Chalti Ka Naam Gaadi"

Literals are structured things made of a lexical part, language (maybe), or datatype (maybe).

You could filter: FILTER ( str( ?name ) = "Chalti Ka Naam Gaadi")

(str() returns the lexical part of the literal)

but, depending on the query engine, that will be much slower.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...