Rename All MySQL Database

0

I would like to know if it is possible to rename a whole database of MySQL

I have the Database Register with the people table

I would like to rename CAD_CRS

Is it possible?

    
asked by anonymous 12.07.2017 / 01:47

1 answer

3

PhpMyAdmin has an operation for this.

In PhpMyAdmin, select the database you want to rename. In the tabs, there is a Operations call, after that, go to the rename section.

Or, create a new database with the new name, drop all the tables from the old database into the new database, and delete the old database.

    
12.07.2017 / 01:51