4 lines
150 B
SQL
4 lines
150 B
SQL
/*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'; |