The problem is that you can't use wildcards in a RENAME SQL like
Code:
rename table `test2`.`p1%` to `test2`.`p2%`
To support this you will then have to (for instance)
1) enable mutible select in Object Browser (Ctrl+click and Shift+click). I think that is the easy part of if.
2) next you will have to implement program code, reading the names of selected tables, validating those names against the mask/pattern provided by user and generating a RENAME statement for each selected table. Involves quite a lot of coding, I think.
But for those people using MySQL at an ISP, where only one database is available the use of prefixes is widely used to compensate for this. So to those people such feature could be pretty useful. hmmm … not high priority in my opinion.