-- Quick, no possible rollback TRUNCATE TABLE my_table; -- With rollback DELETE FROM my_table; COMMIT;
TRUNCATE TABLE tablename
select * from toys; truncate table toys; select * from toys; rollback; select * from toys;