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