新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
MySQL快速更改數(shù)據(jù)庫名稱
MySQL中如何更改數(shù)據(jù)庫名稱?本篇文章為大家分享一下MySQL快速更改數(shù)據(jù)庫名稱具體方法。

1、新建數(shù)據(jù)庫centos_old.
mysql > create database centos_old;
2、使用select concat拼成所有rename table的語句。
mysql -uroot -p -e "select concat('rename table centos.',table_name,' to centos_old.',table_name,';') from information_schema.TABLES where TABLE_SCHEMA='centos';" > rename_mysql_name.sql
打開rename_mysql_name.sql,把第一行刪除。
rename_mysql_name.sql內(nèi)容大概為:
rename table centos.wp_commentmeta to centos_old.wp_commentmeta;
rename table centos.wp_comments to centos_old.wp_comments;
rename table centos.wp_forum_forums to centos_old.wp_forum_forums;
rename table centos.wp_forum_groups to centos_old.wp_forum_groups;
rename table centos.wp_forum_posts to centos_old.wp_forum_posts;
rename table centos.wp_forum_threads to centos_old.wp_forum_threads;
rename table centos.wp_forum_usergroup2user to centos_old.wp_forum_usergroup2user;
rename table centos.wp_forum_usergroups to centos_old.wp_forum_usergroups;
rename table centos.wp_links to centos_old.wp_links;
rename table centos.wp_options to centos_old.wp_options;
rename table centos.wp_postmeta to centos_old.wp_postmeta;
rename table centos.wp_posts to centos_old.wp_posts;
rename table centos.wp_term_relationships to centos_old.wp_term_relationships;
rename table centos.wp_term_taxonomy to centos_old.wp_term_taxonomy;
rename table centos.wp_terms to centos_old.wp_terms;
rename table centos.wp_usermeta to centos_old.wp_usermeta;
rename table centos.wp_users to centos_old.wp_users;
3、執(zhí)行rename語句
mysql -uroot -p
這樣就完成了centos數(shù)據(jù)庫名更改為centos_old的操作。
網(wǎng)頁標(biāo)題:MySQL快速更改數(shù)據(jù)庫名稱
轉(zhuǎn)載來于:http://fisionsoft.com.cn/article/cdciejh.html


咨詢
建站咨詢
