Average department salary
How to get the employee details whose salary is less than the average salary of the department.
select emp_name, avg(salary)from employees group by emp_namehaving avg(salary) < (Select avg(salary) &...
SELECT * FROM emp e WHERE sal> (SELECT AVG(sal) FROM emp GROUP BY deptno HAVING deptno=e.deptno) ORDER BY deptno;
Engineering
Interview Coaching
Interview Questions
Tech FAQs
How do you handle workplace problems?
Give me good reasons why should I choose you over others.
Tell me about a skill you recently acquired or improved.
Describe a time when you had to work under pressure.
What are the things you wish to achieve in 5 years?
What do you do when things do not go as planned? Cite an example.
Importance of an MBA for an entrepreneur
What is the role of a mechanical engineer in the Software Industry?
Describe a time when you had to convince a friend ?
Have you experienced being given too many tasks?
Ask Interview Question?
Have Career Question?
Ask Chandra
Ask Only Career questions.
select emp_name, avg(salary)from employees group by emp_namehaving avg(salary) < (Select avg(salary) &...
SELECT * FROM emp e WHERE sal> (SELECT AVG(sal) FROM emp GROUP BY deptno HAVING deptno=e.deptno) ORDER BY deptno;