我想检查一个变量是否为空。如果为null,那么我想为该变量设置一个值:
//data type of var is number if Var = null then var :=5; endif
但是我在猜测错误。如何检查变量是否为空?
我正在使用oracle数据类型
if Var is NULL then var :=5; endif
//data type of var is number if Var = null then var :=5; endif
但是我在猜测错误。如何检查变量是否为空?
我正在使用oracle数据类型
if Var is NULL then var :=5; endif