欢迎各位兄弟 发布技术文章
这里的技术是共享的
在mysql中, 如果类型为时间的列设置了CURRENT_TIMESTAMP, 那么在insert一条新记录的收, 时间字段自动获取到当前时间, 如果设置了ON UPDATE CURRENT_TIMESTAMP, 则时间字段随着update命令的更新和实时变化。 如果两个属性都设置了, 那么时间字段默认为当前时间, 且随着记录的更新而自动变化。 注意, 如果仅仅是update操作, 但id(如下)并没有实际变更, 则时间值也不会变化。
如果时间字段没有设置如上两个属性, 则默认拥有如上两个属性, 有兴趣的可以试试:
见下面红色部分,会自动更新时间
- create table test(
- id int,
- expire_time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
- )ENGINE=InnoDB DEFAULT CHARSET=utf8;
和- create table test(
- id int,
- expire_time timestamp NOT NULL
- )ENGINE=InnoDB DEFAULT CHARSET=utf8;
是等价的。来看下实际操作:
mysql> create table tb_test(
-> id int,
-> time1 timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
-> )ENGINE=InnoDB DEFAULT CHARSET=utf8;
Query OK, 0 rows affected (0.04 sec)
mysql>
mysql>
mysql>
mysql> insert into tb_test set id = 1;
Query OK, 1 row affected (0.04 sec)
mysql> select * from tb_test;
+------+---------------------+
| id | time1 |
+------+---------------------+
| 1 | 2017-09-30 20:54:52 |
+------+---------------------+
1 row in set (0.00 sec)
mysql> update tb_test set id = 2 where id = 1;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> select * from tb_test;
+------+---------------------+
| id | time1 |
+------+---------------------+
| 2 | 2017-09-30 20:55:30 |
+------+---------------------+
1 row in set (0.00 sec)
mysql>
来自 https://blog.csdn.net/stpeace/article/details/78145218