/*19. Write a query to find a salesman with customers located in their cities.*/ SELECT * FROM salesman WHERE city=ANY (SELECT city FROM customer);