增加测试用存储过程脚本

This commit is contained in:
falcon 2021-12-04 12:41:09 +08:00
parent ab963f7cee
commit 9f677d3509
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
--Oracle测试用存储过程
create or replace procedure GetEmployee
(
v_orgaid IN NVARCHAR2 DEFAULT NULL
,v_data out sys_refcursor
)is
begin
open v_data for
select a.empcode,a.empname,a.empactive
from app_employee a
where a.orgaid=v_orgaid;
end;
/

Binary file not shown.