EasyOutput prediction

MIN on a text column

Given this table (employees):

idname
1Zara
2Alice
3Marcus

What does this query return?

SELECT MIN(name), MAX(name) FROM employees;

← → arrow keys to navigate

Sign in to save your progress.