Below command will drop the table if exists in MySQL:
DROP TABLE IF EXISTS `YourTableName`
Replace “YourTableName” with your table name which you want to be dropped.
Below command will drop the table if exists in MySQL:
DROP TABLE IF EXISTS `YourTableName`
Replace “YourTableName” with your table name which you want to be dropped.