我在写存储过程时:update history   set arr1= iif(IsEmpty(arr1),@time,arr1)  where his_date=@his_date and empid=@empid
提示 :'IsEmpty'不是可识别的函数名' 改成:
update history   set arr1= iif(arr1 is null,@time,arr1)  where his_date=@his_date and empid=@empid
又提示:
在关键字‘null’附近有语法错误为什么 ,谢谢大家!!!