oracle定义整数数组长度,oracle字定义类型数组
--自定义类型--用户对象create or replace type user_type as object(username varchar2(20),sex varchar2(2));--用户数组类型create or replace type user_array is table of user_type;create or replace function fun_userlistre...