问题
在带有 Oracle 数据源的计算字段中使用 DATE() 函数时,可能会出现以下错误:ORA-01861: literal does not match format string(ORA-01861:文字与格式字符串不匹配)
DATE( STR ([Year]) + "-" + STR([Month]) + "-1" )
则匹配的 DATEPARSE() 计算将是
DATEPARSE("yyyy-mm-dd", (STR ([Year]) + "-" + STR([Month]) + "-1" ))