0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

データベースのリネーム

Posted at

現在、userテーブルとmessageテーブルの二つのテーブルがあるdatabase_oneというデータベースがあるとする。
このデータベースの名前を、database_newに変更したい。
#1.新しいデータベースを作る

create database database_new;

#2.テーブルごとに改名する
今回はuserとmessageテーブルのみなので二回行う。

rename table database_one.user to database_new.user;
rename table database_one.message to database_new.message;
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?