小编And*_*ves的帖子

PL/SQL关联数组验证索引是否存在

我有这个关联数组3-d

type v_arr_class is table of varchar2(255) index by varchar2(255);
type v_arr_component is table of v_arr_class index by varchar2(255);
type v_arr_property is table of v_arr_component index by varchar2(255);

v_arr_local_rec v_arr_property;
Run Code Online (Sandbox Code Playgroud)

我需要验证索引是否存在

if(v_arr_local_rec('class')('component')('property') exist) then

do this... 

end if
Run Code Online (Sandbox Code Playgroud)

没有太多关于找到的关联数组的信息.

提前致谢.

arrays plsql plsqldeveloper

7
推荐指数
1
解决办法
9126
查看次数

标签 统计

arrays ×1

plsql ×1

plsqldeveloper ×1