SQL - Advanced Joins
Consider this SQL query intended to list employees and their managers:
What is the error in this query?
SELECT e.name, m.name AS manager_name FROM employees e JOIN employees m ON e.id = m.manager_id;
What is the error in this query?
