How to delete all records from a table using SQL
Posted by SceDev
Last Updated: February 10, 2024

To delete all records from a table, use the following SQL statement.

DELETE FROM <insert_table_name_here>

 


If you also want to remove the table, use the DROP statement.

DROP <insert_table_name_here>