Joining a table to itself using two aliases, typically to walk a hierarchy stored in the same table.
SELECT e.name AS employee, m.name AS manager FROM employees e JOIN employees m ON e.manager_id = m.id;