Answers for "sql how to drop all rows"

9

delete all rows from table sql

-- Quick, no possible rollback
TRUNCATE TABLE my_table;
-- With rollback
DELETE FROM my_table;
COMMIT;
Posted by: Guest on January-23-2021
14

delete all records from table

DELETE FROM table_name;
Posted by: Guest on June-01-2020

Browse Popular Code Answers by Language