How to delete a table with all its concepts in SQL or MySQL?
DROP TABLE `database_name`.`table_name` will delete the mentioned table from the database along with all its contents. Use this statement very carefully as often beginners make similar mistake which costs them dearly.