码迷,mamicode.com
首页 > 数据库 > 详细

mysql修改库名

时间:2019-12-24 18:49:41      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:直接   ase   data   数据库   where   color   done   sql   lis   

#!/bin/bash
# 假设将sakila数据库名改为new_sakila
# MyISAM直接更改数据库目录下的文件即可

mysql -uroot -p123456 -e create database if not exists new_sakila
list_table=$(mysql -uroot -p123456 -Nse "select table_name from information_schema.TABLES where TABLE_SCHEMA=‘sakila‘")

for table in $list_table
do
    mysql -uroot -p123456 -e "rename table sakila.$table to new_sakila.$table"
done

mysql修改库名

标签:直接   ase   data   数据库   where   color   done   sql   lis   

原文地址:https://www.cnblogs.com/fanblogs/p/12092655.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!