Answers for "how to drop all records from a table sql"

SQL
12

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

Code answers related to "how to drop all records from a table sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language