create or replace procedure PROC_Test_User(vF_username in varchar2, out_Refcursor out sys_refcursor) isbegin
open out_Refcursor for
SELECT u.* FROM tb_system_user u WHERE 1 > 0 AND u.f_username LIKE '%' ||vF_username || '%';end PROC_Test_User;
因篇幅问题不能全部显示,请点此查看更多更全内容