Sorting & limiting
Exercise · SQL & Querying

Predict, then run it

Predict the output

names(n) = ana, Zeb, bo. Order them the way a reader expects — case-insensitively:

SELECT n FROM names ORDER BY lower(n);

Predict the exact output.