SQL - INNER JOIN
Given tables
Employees (primary key EmployeeID) and Departments (foreign key ManagerID referencing EmployeeID), what will this query return?SELECT Employees.Name, Departments.DepartmentName FROM Employees JOIN Departments ON Employees.EmployeeID = Departments.ManagerID;
