π Practice Mode
SQL Fundamentals Quiz
Learn at your own pace with hints and detailed explanations
1 / 20
Multiple Choice
Which SELECT statement should you use if you want to display unique combinations of the POSITION and MANAGER values from the EMPLOYEE table?
- SELECT DISTINCT position, manager FROM employee;
- SELECT position, manager DISTINCT FROM employee;
- SELECT position, manager FROM employee;
- SELECT position, DISTINCT manager FROM employee;