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