How to rename a database in mysql 5.5
Why do I need this? In mysql 5.5 the RENAME DATABASE functionality went away, but the manual does show that RENAME TABLE works: RENAME TABLE current_db.tbl_name TO other_db.tbl_name; While is is good, it’s a pain when there lots of tables, and leaves lots of room for typos and human error. …