SQL AlgorithmLeetCode181. Employees Earning More Than Their Managers Column Name Type id int namevarcharsalary int managerId int id is the primary key (column with unique values) for this table.Each row of this table indicates the ID of an employee, their name, salary, and the ID of their manager.Write a solution to find the employees who earn more than their managers.Return the result table in..