programming-examples/sql/RetrieveFromTables/Write a query to display names and city of salesman, who belongs to the city of Paris.sql

4 lines
150 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*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';