如何在mysql中修改数据库名?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
方法:
一般我们选择通过修改表名称来间接实现修改数据库名称。
创建新库:
create database db_new;
修改表名,将表移动到新库里:
rename table db_old.tb to db_new.tb;
如果库里有很多表,就要写一个脚本,批量执行。
最后删除旧库:
drop database db_old;
附上一个shell脚本批量修改表名称。
#!/bin/bash# 假设将db_old数据库名改为db_newmysql -h227.0.0.1 -uadmin -p'123456' -e 'create database if not exists db_new'list_table=$(mysql -h227.0.0.1 -uadmin -p'123456' -Nse "select table_name from information_schema.TABLES where TABLE_SCHEMA='db_old'")for table in $list_tabledo mysql -h227.0.0.1 -uadmin -p'123456' -e "rename table db_old.$table to db_new.$table"done
关于如何在mysql中修改数据库名问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注编程网行业资讯频道了解更多相关知识。