how to drop a 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];
Example 3: to delete a table in mysl
drop table table_name;
Example 4: 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`;
Example 5: how to delete a table in mysql
DROP TABLE tablename;
Example 6: delete table in mysql
delete table query
DROP TABLE <table name;
e.g. DROP TABLE students;