DB2 - Write a query to display employee name who gets highest salary

 Posted by Bandi on 11/30/2013 | Category: Others Interview questions | Views: 2588 | Points: 40
Answer:

SELECT FIRST_NAME
FROM EMPLOYEES
WHERE SALARY = (SELECT MAX(SALARY)
FROM EMPLOYEES
)


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response