πŸ“š 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?

  1. SELECT DISTINCT position, manager FROM employee;
  2. SELECT position, manager DISTINCT FROM employee;
  3. SELECT position, manager FROM employee;
  4. SELECT position, DISTINCT manager FROM employee;