SELECT e.id, e.first_name, e.role, e.manager_id, m.first_name FROM employee e LEFT JOIN employee m ON e.manager_id = m.id;