Answers for "display the employees whose salary is less than average salary"

0

display the employees whose salary is less than average salary

select * from EMPLOYEE where sal < (select avg(emp_sal) from EMPLOYEE);
Posted by: Guest on January-29-2021
0

get all employee of salary if more than in sql

SELECT * FROM EMPLOYEES
WHERE SALARY > 10000;
Posted by: Guest on January-28-2021

Code answers related to "display the employees whose salary is less than average salary"

Browse Popular Code Answers by Language