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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!