mysql 數(shù)據(jù)庫替換,MySQL修改字段默認值?
1、首先新建一張表結(jié)構(gòu)。
2、select * from t_temp_test 查看下這張表已經(jīng)建好在數(shù)據(jù)庫里面了。
3、查看該t_temp_test表結(jié)構(gòu) sp_help t_temp_test,可以看到字段column_b 的默認值定義為空,默認屬性是DF__t_temp_te__colum__19DA45DB。
4、修改表的默認值先要把表的默認屬性刪除了才能修改,刪除表的默認屬性。
5、刪除之后再執(zhí)行sp_help t_temp_test,這個時候默認值屬性已經(jīng)被刪除了的。
6、然后再重新給字段新加上默認屬性alter table t_temp_test add constraint DF__t_temp_te__colum__19DA45DB DEFAULT (('123')) for column_b。
7、執(zhí)行完畢再查詢表結(jié)構(gòu)sp_help t_temp_test可以看到表的默認值已經(jīng)被更改為字符串‘123’。