Answers for "how to delete all the data from a table in sql"

SQL
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 "how to delete all the data from a table in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language