SQL - Views
Given the table
What will the query
Employees with columns EmployeeID, Name, Salary, and a view EmployeeView defined as:CREATE VIEW EmployeeView AS SELECT EmployeeID, Name FROM Employees;
What will the query
SELECT * FROM EmployeeView; return?