/*Write a query to filter those salesmen with all information who likes to leave other cities than Paris and Rome.*/ SELECT * FROM salesman WHERE city NOT IN('Paris','Rome');