Question: The function will return the total salaries, but does not work correctly,show the outpu and the code? CREATE function allsal( dep_name in varchar, job_title in
The function will return the total salaries, but does not work correctly,show the outpu and the code? CREATE function allsal( dep_name in varchar, job_title in varchar, count_name in varchar);
return number; as total_salaries number:=0;
begin
select SUM(salary) into total_salaries from emp where dname=dep_name OR job = job _title OR country = country_name;
return total_salaries; end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
