Answers for "delete all rows table"

SQL
10

delete all records from table

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

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
0

drop all data from tables

DELETE FROM my_table;			-- all rows, needs a COMMIT to validate
TUNCATE TABLE my_table;			-- all rows, quicker, no possible roolback
Posted by: Guest on May-08-2021

Code answers related to "delete all rows table"

Code answers related to "SQL"

Browse Popular Code Answers by Language