delete table mysql query code example
Example 1: drop table in mysql
DROP TABLE table_name;
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`;
DROP TABLE table_name;
-- 'DROP TABLE' followed by the name of the table you would like
-- to drop.
DROP TABLE `test_table`;