Created
March 9, 2022 10:19
-
-
Save tinwritescode/f445c17b8d29c7092b1eba2c23365ed5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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