Self-Join - used to combine rows with other rows in the same table
To use self join, you must use a table alias to help SQL distinguish the left table from the right table of the same table
no need to use the word JOIN, just have 2 tables as aliases in FROM — SELECT e1.employee_name
FROM employee AS e1, employee AS e2
WHERE
e1.employee_location = e2.employee_location
AND e2.employee_name = 'Joe'