SQL - INNER JOIN
Identify the issue in this SQL join:
Given
SELECT E.EmployeeName, D.Name FROM Employees E JOIN Departments D ON E.DeptID = D.DepartmentID;
Given
DeptID is a foreign key in Employees and DepartmentID is the primary key in Departments.