
Asked in TO THE NEW and 2 others
Write a query to find the name of the employee getting the maximum salary. Assume there are two tables: one with employee ID and name, and another with employee ID, month, and salary.

AnswerBot
10d
SQL queries to find the employee with the highest salary from two tables.
Use UNION to combine results from both tables.
Select the maximum salary using MAX() function.
Example: SELECT MAX(salary) FROM (...read more
Snehal Shinde
2y
Select ename,max(sal)
From emp
Group by ename;
Anonymous
2y
Select employee_name, max(salary) as max_salary
From employees;
Add answer anonymously...
Interview Questions from Popular Companies

3.7
• 8.8k Interviews

4.0
• 5.5k Interviews

3.5
• 4.2k Interviews

3.6
• 8k Interviews

3.7
• 6k Interviews

3.7
• 6.2k Interviews

3.5
• 4.2k Interviews

3.7
• 5.1k Interviews
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

