Skip to content

Instantly share code, notes, and snippets.

@tinwritescode
Created March 9, 2022 10:19
Show Gist options
  • Save tinwritescode/f445c17b8d29c7092b1eba2c23365ed5 to your computer and use it in GitHub Desktop.
Save tinwritescode/f445c17b8d29c7092b1eba2c23365ed5 to your computer and use it in GitHub Desktop.
declare
I_EMPNO EMP_19127582.EMPNO %TYPE := 7654;
O_ENAME EMP_19127582.ENAME %TYPE;
O_ANUAL_SAL NUMBER;
begin
SP_CAU1_THUTHAPNV_19127582(
I_EMPNO => I_EMPNO,
O_ENAME => O_ENAME,
O_ANUAL_SAL => O_ANUAL_SAL
);
open ? for select O_ENAME as O_ENAME, O_ANUAL_SAL as O_ANUAL_SAL from dual;
end;
begin
SP_CAUTRUCBANGEMP_19127582;
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment