programming-examples/sql/RetrieveFromTables/Write a query to display names and city of salesman, who belongs to the city of Paris.sql
2019-11-18 14:05:53 +01:00

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';