SQL - INNER JOIN
Given tables:
What will this query return?
Employees(id, name, dept_id)Departments(dept_id, dept_name)What will this query return?
SELECT Employees.name, Departments.dept_name FROM Employees INNER JOIN Departments ON Employees.dept_id = Departments.dept_id;
