SQL - Advanced Joins
Identify the error in this SQL query intended to list employees with their managers:
SELECT e.name, m.name FROM employees e JOIN employees m ON e.id = m.manager_id;
