CLOB为null但它无法进行null检查

时间:2016-08-15 04:12:58

标签: plsql null clob

我有一个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'但它没有打印任何意味着它是空的。

0 个答案:

没有答案