EasyOutput prediction
MIN on a text column
Given this table (employees):
| id | name |
|---|---|
| 1 | Zara |
| 2 | Alice |
| 3 | Marcus |
What does this query return?
SELECT MIN(name), MAX(name) FROM employees;
← → arrow keys to navigate
Sign in to save your progress.
Given this table (employees):
| id | name |
|---|---|
| 1 | Zara |
| 2 | Alice |
| 3 | Marcus |
What does this query return?
SELECT MIN(name), MAX(name) FROM employees;
← → arrow keys to navigate
Sign in to save your progress.