我收到以下错误。
Virtuoso 22007 Error DT006: Cannot convert -0359 to datetime : Incorrect month field length
SPARQL query:
define sql:big-data-const 0
#output-format:text/html
define sql:signal-void-variables 1 select ?item bif:year(xsd:dateTime( str(?dob))) as ?m{
?item <h://f.cm/ns/common/topic/notable_types> <h://f.cm/ns/people/person> .
?item <h://f.cm/ns/people/person/date_of_birth> ?dob
} limit 675
如果我将限制更改为674
,它可以工作。
我怀疑是某个日期时间字段在某处出错并打印出来?dob
,这表明其中一个值是-0359
.
bif
解决方案是在应用函数之前验证值。
但是,我们如何在 SPARQL 中验证日期时间?