SQL - Views
Given the table
Employees with columns id, name, and department, what will the following SQL return?CREATE VIEW ITStaff AS SELECT id, name FROM Employees WHERE department = 'IT';
SELECT * FROM ITStaff;