Find Highest Paid Manager Employees Table

Find the highest-paid manager.

sql

SELECT name, salary FROM employees WHERE position = 'manager' ORDER BY salary DESC LIMIT 1;

This query selects the name and salary of the employee with the highest salary from the "employees" table, filtered by the "manager" position, and returns the top record.

PromptDB can make mistakes. Please double-check responses.