Created
November 9, 2023 06:25
-
-
Save ciurca/2710acf6756e27d162dec9185c8ca795 to your computer and use it in GitHub Desktop.
This file contains 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
-- Exercitiul 1 (Salariul Mediu) | |
DECLARE | |
v_functie angajati.job_id%TYPE:='SA_REP'; | |
v_salariu_mediu angajati.salary%TYPE; | |
BEGIN | |
SELECT AVG(salary) INTO v_salariu_mediu FROM ANGAJATI WHERE job_id=v_functie; | |
dbms_output.put_line(v_salariu_mediu); | |
END; |
Author
ciurca
commented
Nov 12, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment