44
36

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 5 years have passed since last update.

MySQLでカラムの順番を変更する

Posted at

よく忘れるので、メモ

以下のようなテーブルがあったとします。

id
title
description
user_id
```

以上を以下のようにしたい

```mysql
id
user_id
title
description
```

`alter table テーブル名 modify 移動したいカラム名 text after 移動したいカラム名の上にくるカラム名;`例えば以上のように`user_id`を`id`の下に持ってきたい場合。
`alter table テーブル名 modify user_id text after id;`とする
44
36
1

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
44
36

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?