how long does it take mysql to drop tables code example
Example: 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' followed by the name of the table you would like
-- to drop.
DROP TABLE `test_table`;