首先非常感谢您的答复。
不好意思,我编辑弄掉了一些符号,完整信息应该是下面这样的
if
(col['a']== "b") and (not( isNull(col['x'] )))
then "1"
elseIf
(col['a'] != "b") and (not( isNull(col['x'])))
then "2"
else
"3"
end
后台用的oracle数据库,就会报错报错
刚刚用MYSQL数据库,同样的表达就没有报错:
if
(col['产品名称']== "A-AX1") and (not( isNull(col['员工号'] )))
then "1"
elseIf
( col['产品名称']!= "B-BX1") and (not( isNull(col['员工号'] )))
then "3"
else
"2"
end |