mysql> select * from t1;+------+| id |+------+| 1 || 2 || 3 |+------+3 rows in set (0.02 sec)mysql> alter table t1 add col1 char(1);Query OK, 3 rows affected (0.24 sec)Records: 3 Duplicates: 0 Warnings: 0
添加字段之后的表中数据:
mysql> select * from t1;+------+------+| id | col1 |+------+------+| 1 | NULL || 2 | NULL || 3 | NULL |+------+------+3 rows in set (0.00 sec)
过了一会儿,他要求设置新添字段的默认值为'N':
mysql> alter table t1 modify col1 char(1) default 'N';Query OK, 0 rows affected (0.05 sec)Records: 0 Duplicates: 0 Warnings: 0
查看此时的表中数据:
mysql> select * from t1;+------+------+| id | col1 |+------+------+| 1 | NULL || 2 | NULL || 3 | NULL |+------+------+3 rows in set (0.00 sec)
操作到这里,可以说同事的这个需求就算告一段落了。不过如果把刚才的时间倒回到这个小需求的开始点,同事如果一次性的提出了完整的需求:添加一个char(1)类型的字段,默认值为‘N’:
mysql> alter table t1 add col1 char(1) default 'N';Query OK, 3 rows affected (0.19 sec)Records: 3 Duplicates: 0 Warnings: 0查看表中数据:mysql> select * from t1;+------+------+| id | col1 |+------+------+| 1 | N || 2 | N || 3 | N |+------+------+3 rows in set (0.00 sec)
两次基本上相同的操作,但表中旧数据中的新添字段的结果却是不一样的。
我记录这段操作过程并不是想说明字段类型填充的默认值的原理,因为它不是一个复杂的概念,只是觉得日后需留意一些类似的小细节。