我有一个clob变量,我正在检查它是否无效。但它没有通过空检查。
temp_appid_holder := NULL;
if(temp_appid_holder = NULL) then
dbms_output.put_line('temp is null');
else
dbms_output.put_line('temp is not null');
end if
上述控制结构仅打印&temp; temp不为空
。我已尝试打印' temp_appid_holder'但它没有打印任何意味着它是空的。