Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 273 Bytes

readme.md

File metadata and controls

5 lines (5 loc) · 273 Bytes

compiler project

main query:

       select e.employee_age,d.department_name, sum(len(e.employee_salary)) from employees e
                  join departments d on e.department_id = d.department_id
                  group by e.employee_age,d.department_name