Answered step by step
Verified Expert Solution
Question
1 Approved Answer
DB development The function will return the total salaries, but does not work correctly? CREATE function allsal( dep_name in varchar, job_title in varchar, count_name in
DB development
The function will return the total salaries, but does not work correctly? 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 employees where dname=dep_name OR job = job _title OR country = count_name;
return total_salaries; end;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started