Answers for "how to find out average salary of each department in sql"

SQL
0

find below average salary in sql

SELECT first_name, salary FROM employees
WHERE salary <= (SELECT AVG(salary) FROM employees);
Posted by: Guest on January-28-2021

Code answers related to "how to find out average salary of each department in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language