EASY·Output prediction

Given this table (orders): | id | customer | |----|----------| | 1 | Alice | | 2 | Bob | | 3 | Alice | | 4 | Carol | What does this query return?

SELECT DISTINCT customer FROM orders;

Sign in to save your progress.