在mysql建表的时候需要添加两个时间列,分别记录当前记录的创建时间和修改时间。
好。
下面是建表语句:
[sql] view plain copy
- DROP TABLE IF EXISTS `mytesttable`;
- CREATE TABLE `mytesttable` (
- `id` int(11) NOT NULL,
- `name` varchar(255) DEFAULT NULL,
- `createtime` datetime DEFAULT CURRENT_TIMESTAMP,
- `updatetime` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=gbk;
执行完成后,在表中插入记录。
然后修改一条记录:
[sql] view plain copy
- update mytesttable set name = ‘wer‘ where id = 2
再次查看表中的数据:
能够看到,createtime代表了本条记录创建的时间,而updatetime记录了当前记录修改的时间。
原文地址:https://www.cnblogs.com/qds2745/p/8588182.html
时间: 2024-11-05 19:03:45