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?

docker コンテナ内でDBをSQLで操作してみよう (カラム削除)

Last updated at Posted at 2024-07-19

Dockerのコンテナ内でDBを直接操作する必要があることもあると思います。適切に操作ができるように一例をここにあげておきます。特定のテーブルの特定のカラムを削除する操作を示しています。

入るコンテナの確認

docker ps
docker exec コンテナ名 bash
mysql -u ユーザー名 -p
USE database名;

ここからsqlでの操作

ALTER TABLE your_table_name DROP COLUMN your_column_name;
DBのカラムを除ける処理

USE my_database;
ALTER TABLE users DROP COLUMN age;

migrationとの同期のズレに気をつけておかないと、思わぬエラーが起きることもあり、注意が必要です!!

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?