how to drop and create table in mysql code example
Example 1: drop table in mysql
DROP TABLE table_name;
Example 2: how to delete a table entry in mysql
DELETE FROM `table_name` [WHERE condition];
DROP TABLE table_name;
DELETE FROM `table_name` [WHERE condition];