sql create an empty table code example
Example 1: empty an sql table
TRUNCATE TABLE table_name;
Example 2: sql empty table
-- Quick, no possible rollback
TRUNCATE TABLE my_table;
-- With possible rollback
DELETE FROM my_table;
COMMIT; -- or ROLLBACK;