我在http://dbpedia.org/snorql/上运行以下查询,以便在特定日期之后让某些城市出生的人:
SELECT ?birth ?person WHERE {
?person dbo:birthPlace dbr:Paris .
?person dbo:birthDate ?birth .
FILTER (?birth > "1900-01-01"^^xsd:date) .
} LIMIT 1
我得到以下结果:
SPARQL results:
birth person
"1752-9-18"^^xsd:date :Adrien-Marie_Legendre
如果我在1900-01-01之后按日期过滤,这怎么可能?