Hi,
I have a SELECT statement like this:
SELECT department_name, last_name, project_number
FROM departments d
LEFT JOIN employees e
ON d.department_number = e.department_number
LEFT JOIN projects p
ON e.employee_id = p.employee_id
For the first LEFT JOIN, "departments" is the left table and "employees" is the right table.
For the second LEFT JOIN, "projects" is the right table. What is the left table for this join?