programming-examples/sql/RetrieveFromTables/Write a query which will retrieve the values of salesman id of all salesmen, getting orders from the customers in orders table without any repeats.sql

2 lines
43 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
SELECT DISTINCT salesman_id
FROM orders;