SQL - INNER JOIN
Consider this query:
Given
SELECT e.Name, d.DeptName FROM Employees e INNER JOIN Departments d ON e.DeptID = d.ID;
Given
Departments has column DeptID but no ID column, what is the issue?