Stdle #4 · nulls · 2026-06-10
What does this SQL snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
CREATE TABLE t(v INTEGER);INSERT INTO t VALUES (2),(NULL),(1),(3);SELECT v FROM t ORDER BY vNULLs
Stdle #4 · nulls · 2026-06-10
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
CREATE TABLE t(v INTEGER);INSERT INTO t VALUES (2),(NULL),(1),(3);SELECT v FROM t ORDER BY v