mysql怎样修改数据库名
目的:
将数据库名称db_old 修改为 db_new。
(推荐教程:mysql数据库学习教程)
方法:
一般我们选择通过修改表名称来间接实现修改数据库名称。
1、创建新库:
create database db_new;
2、修改表名,将表移动到新库里:
rename table db_old.tb to db_new.tb;
如果库里有很多表,就要写一个脚本,批量执行。
3、最后删除旧库:
drop database db_old;
附上一个shell脚本批量修改表名称。
#!/bin/bash # 假设将db_old数据库名改为db_new mysql -h127.0.0.1 -uadmin -p'123456' -e 'create database if not exists db_new' list_table=$(mysql -h127.0.0.1 -uadmin -p'123456' -Nse "select table_name from information_schema. TABLES where TABLE_SCHEMA='db_old'") for table in $list_table do mysql -h127.0.0.1 -uadmin -p'123456' -e "rename table db_old.$table to db_new.$table" done
来源:PY学习网:原文地址:https://www.py.cn/article.html