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>