1
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.

【MySQL】テーブル名・カラム変更

Posted at

テーブル名の変更

ALTER TABLE tbl_name RENAME TO new_tbl_name;

インデックス名の変更

ALTER TABLE tbl_name RENAME INDEX old_index_name TO new_index_name;

カラム名の変更

ALTER TABLE tbl_name RENAME COLUMN old_col_name TO new_col_name;

カラム定義の変更

ALTER TABLE tbl_name MODIFY col_name column_definition;

カラムを追加する

ALTER TABLE tbl_name ADD col_name column_definition;

カラムを削除する

ALTER TABLE tbl_name DROP col_name;
1
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
1
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?