是否需要在 MySQL 中添加 DEFAULT NULL?
否,没有必要,因为在不添加 DEFAULT NULL 的情况下,它会给出 NULL 值。比如说,你没有添加 DEFAULT NULL,并且插入一个没有值的记录,那么结果会显示 NULL 值作为插入的值。
我们先创建一个表 -
mysql> create table DemoTable ( FirstName varchar(100) ); Query OK, 0 rows affected (0.57 sec)
使用 insert 命令在表中插入一些记录 -
mysql> insert into DemoTable values('Chris'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values(); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable values('David'); Query OK, 1 row affected (0.12 sec)
使用 select 语句从表中显示所有记录 -
mysql> select *from DemoTable;
这会产生以下输出 -
+-----------+ | FirstName | +-----------+ | Chris | | NULL | | NULL | | David | +-----------+ 4 rows in set (0.00 sec)
广告