1. Write a SQL Statement to create a View called vwEmployeeTerritories that will do the following: Return all Employees and their Territories (use INNER JOIN). Show the Employee Name and the Territory Description in the result set. Test the view that it properly works.
2. Write a query that will use the vwEmployeeTerritories view to select all employees who are in the following territories: Bedford, Boston, Wilton. Us an IN statement in association with a WHERE clause to do this.