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