You run the statement below against a `users` table that has 1,000 rows. The WHERE clause has a typo and `last_login` is actually spelled `last_login_at`, but you don't notice. What happens?
DELETE FROM users
WHERE id IN (SELECT id FROM inactive_temp);
-- inactive_temp is EMPTY (0 rows)