SQL - INNER JOIN
In the query
SELECT e.name FROM employees e INNER JOIN departments d ON e.dept_id = d.id;, what do e and d represent?