delete a table 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];
Example 3: delete table in mysql
delete table query
DROP TABLE <table name;
e.g. DROP TABLE students;