Below is simple query to find the employee whose salary is highest. select *from employee where salary=(select Max(salary) from employee);
Below is simple query to find the employee whose salary is highest. select *from employee where salary=(select Max(salary) from employee);