Untitled

Anonymous
plain_text
09/24/2024 4:49 AM
204 B
19
Indexable
select avg(dept_salary) as overall_avg_salary from(select department_id,avg(salary) as dept_salary from employees group by department_id)as totalsalary;
Editor is loading...
Leave a Comment