How to delete my tables who all have the prefix myprefix_?
myprefix_
Note: need to execute it in phpMyAdmin
SELECT CONCAT("DROP TABLE ", table_name, ";") FROM information_schema.tables WHERE table_schema = "DATABASE_NAME" AND table_name LIKE "PREFIX_TABLE_NAME%";