This website requires JavaScript.
Explore
Help
Sign In
michael
/
programming-examples
Watch
1
Star
0
Fork
0
You've already forked programming-examples
Code
Issues
Pull Requests
Releases
Wiki
Activity
143c066c2b
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
Michael Reber
8c9a19ec97
Adding SQL query language
2019-11-18 14:05:53 +01:00
2 lines
43 B
SQL
Raw
Blame
History
SELECT
DISTINCT
salesman_id
FROM
orders
;
Reference in New Issue
View Git Blame
Copy Permalink