MySQL 中,默认值无法使用函数
也就是你无法 设置某一列,默认值是 NOW () 这样的处理
假如需要 某列的默认值为 当前数据库时间,那么可以使用 TIMESTAMP 数据类型。插入的时候,填写 null 即可。
mysql> create table testA ( dt TIMESTAMP );
Query OK, 0 rows affected (0.09 sec)
mysql> insert into testA VALUES( null );
Query OK, 1 row affected (0.01 sec)
mysql> insert into testA VALUES( null );
Query OK, 1 row affected (0.08 sec)
mysql> select * from testA;
+---------------------+
| dt |
+---------------------+
| 2011-10-15 20:30:35 |
| 2011-10-15 20:30:36 |
+---------------------+
2 rows in set (0.00 sec)