4 lines
150 B
MySQL
4 lines
150 B
MySQL
|
/*Write a query to display names and city of salesman, who belongs to the city of Paris. */
|
||
|
SELECT name,city
|
||
|
FROM salesman
|
||
|
WHERE city='Paris';
|