not null与default 是否可空,null表示空,非字符串not null - 不可空null - 可空 use db4: 默认值,创建列时可以指定默认值,当插入数据时如果未主动设置,则自动添加默认值 mysql> create table tb2(id int not null); Query OK, rows affected (0.01 sec) mysql> desc tb2; +-------+---------+------+-----+---------+-------…