/*Write a query to filter those salesmen with all information who comes from any of the cities Paris and Rome.*/ SELECT * FROM salesman WHERE city IN('Paris','Rome');