Data modification & MERGE
Exercise · SQL & Querying

Predict, then run it

Predict the output

designs(name, deleted_at) = (active, NULL),(gilt, 2027-01-01). The live designs — the filter is a NULL test:

SELECT name FROM designs WHERE deleted_at IS NULL ORDER BY name;

Predict the exact output.