how to delete the data in the table in mysql code example
Example 1: how to delete a table entry in mysql
DELETE FROM `table_name` [WHERE condition];
Example 2: how to DROP a table in mysql
-- 'DROP TABLE' followed by the name of the table you would like
-- to drop.
DROP TABLE `test_table`;