Answers for "delete all records from sql table"

SQL
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

delete all records from table except sql

DELETE FROM my_table WHERE col1 > 2;
DELETE FROM my_table WHERE col1 IS NOT NULL;
Posted by: Guest on May-08-2021

Code answers related to "delete all records from sql table"

Code answers related to "SQL"

Browse Popular Code Answers by Language