摘要:
动态数组语法: type <类型名> is table of 类型 index by binary_integer; <变量名> 类型名 示例: declare type jo_arr_type is table of pljson; --jo_arr_type 为表(数组)类型 jo_arr jo 阅读全文
摘要:
###字符串分割 示例 select regexp_substr('aa,bb,cc,dd','[^,]+',1,level) as item from dual connect by level <= length('aa,bb,cc')-length(replace('aa,bb,cc',',' 阅读全文