/*1. Write a query to create a view for those salesmen belongs to the city New York.*/ CREATE VIEW newyorkstaff AS SELECT * FROM salesman WHERE city = 'New York';