Created
December 22, 2014 20:02
-
-
Save JubbaSmail/400eba917adbf867c3cd 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 FUNCTION SUM_SALARY | |
( | |
DEP_ID IN NUMBER | |
) RETURN NUMBER AS | |
x number; | |
BEGIN | |
select sum(salary) into x from employees where department_id = DEP_ID; | |
return x; | |
END; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment