如何判断PLSQL中三种集合是否为空

 

用count判断联合数组(associative array),因为index-by table声明就初始化,用count判断不会引起异常。

用cardinality判断嵌套表(nested table),因为nested table声明时如果没有被初始化,用count判断会引起异常,而nested table的最小下标不一定是1(经过delete后),所以不能用exists(1)判断 。只能用cardinality。

用exists(1)判断varray,因为varray声明时如果没有被初始化,用count判断会引起异常,没有cardinality函数,而varray的最小下标是1,所以可以用exists(1)判断 。


示例代码:
DECLARE
   TYPE test_varray IS varray(2) OF varchar2(10);
   test_id_tab1 test_varray;
  
   TYPE test_tab IS table OF varchar2(10);
   test_id_tab2 test_tab;
  
   TYPE test_itab IS table OF varchar2(10)index by binary_integer;
   test_id_tab3 test_itab;
  
   cnt integer;
   ext boolean;
  
BEGIN

   ext:=     test_id_tab1.exists(1);
   if ext then
   DBMS_OUTPUT.PUT_LINE ('exist' );
   else
   DBMS_OUTPUT.PUT_LINE ('not exist' );
   end if;

cnt:=     cardinality(test_id_tab2);
DBMS_OUTPUT.PUT_LINE ('count' || cnt);

cnt:=  test_id_tab3.count;
DBMS_OUTPUT.PUT_LINE ('count' || cnt);
 
END;

你可能感兴趣的:(SQL/PLSQL)