> 데이터 베이스 > MySQL 튜토리얼 > MySQL에서 데이터베이스 이름을 빠르게 변경하는 방법

MySQL에서 데이터베이스 이름을 빠르게 변경하는 방법

PHPz
풀어 주다: 2023-05-26 21:46:04
앞으로
2637명이 탐색했습니다.

MySQL에서 데이터베이스 이름을 빠르게 변경하는 방법

1. 새 데이터베이스 centos_old.

mysql > create database centos_old;
로그인 후 복사

2를 생성하여 모든 이름 바꾸기 테이블 문을 작성합니다.

    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 내용은 대략

   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입니다. rename 문을 실행합니다

mysql -uroot -p
로그인 후 복사

이로써 centos 데이터베이스 이름을 centos_old로 변경하는 작업이 완료됩니다.

위 내용은 MySQL에서 데이터베이스 이름을 빠르게 변경하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:yisu.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿