Stdle #28 · nulls · 2026-07-04
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 #28 · nulls · 2026-07-04
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