6
5

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.

DB テーブル カラムデフォルト値の変更(DEFAULT)SQL

Last updated at Posted at 2014-04-28

列の値が設定されない時に入るデフォルト値の変更命令です。
構文

ALTER TABLE テーブル名 ALTER COLUMN 列名 SET DEFAULT デフォルト値;

使用例
テーブルuserのgenderのデフォルト値を1に設定

ALTER TABLE user ALTER COLUMN gender SET DEFAULT 1;
6
5
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
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?