Delete all new records in SQL created in the past few minutes Posted on July 20, 2020July 20, 2020 by Jason DELETE FROM tablename where tablename.id IN(SELECT id FROM tablename WHERE "created_on" >=NOW() - INTERVAL '10 minutes');