Given this table (employees): | id | name | dept | |----|-------|-------| | 1 | Alice | Sales | | 2 | Bob | Eng | | 3 | Carol | Sales | What does this query return?
SELECT name FROM employees WHERE dept = 'Sales';
Sign in to save your progress.