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

2 lines
43 B
SQL

SELECT DISTINCT salesman_id
FROM orders;