修改mysql数据库的库名
程序员文章站
2024-02-01 15:18:22
...
假如源数据库名称为“srcdb”,目标数据库名称为trgdb 首先创建目标数据库: create database trgdb; 查看源数据库中的所有表名: use information_schema; select table_name from TABLES where TABLE_SCHEMA= ‘srcdb’; 针对上面查询出来的表名,依次执行
假如源数据库名称为“srcdb”,目标数据库名称为"trgdb"
首先创建目标数据库:
create database trgdb;
查看源数据库中的所有表名:
use information_schema;
select table_name from TABLES where TABLE_SCHEMA= ‘srcdb’;
针对上面查询出来的表名,依次执行以下命令:
rename table srcdb.tablename1 to trgdb.tablename1;
这样源数据库srcdb中的表(表结构和表数据)就被全部迁移到目标数据库trgdb了。
上一篇: 数据库知识点记录
下一篇: 怎样操作vue.js数据绑定