SQL - Views
You want to create a view that shows only employees' names and their department names, hiding salaries for security. Given tables
Employees(EmployeeID, Name, Salary, DeptID) and Departments(DeptID, DeptName), which SQL creates this view correctly?