Created
December 22, 2014 20:20
-
-
Save JubbaSmail/8b5e6a0e879a953e9446 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
CREATE OR REPLACE PROCEDURE EMP_SALARY | |
( | |
EMP_ID IN NUMBER | |
, VAL_SALARY OUT NUMBER | |
) AS | |
x number:=10; | |
BEGIN | |
select salary into VAL_SALARY from employees where employee_id = EMP_ID; | |
VAL_SALARY := VAL_SALARY + x; | |
END EMP_SALARY; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment