mysql automatically store record creation timestamp(mysql 自动存储记录创建时间戳)
问题描述
mysql 是否可以通过某种方式将时间戳自动存储在记录行中,只要它被创建.我试图使用时间戳(数据类型)和 current_timestamp 作为默认值,但后来意识到每次更新记录时都会更新.我只需要一些可以存储创建时间戳的东西.
Is there some way mysql can store timestamp automatically in a record row whenever that it is created. I was trying to use timestamp(data type) with current_timestamp as default value but then realised this will get updated everytime the record is updated. I just need something that will store create timestamp.
谢谢
推荐答案
设置 DEFAULT 约束使用 CURRENT_TIMESTAMP:
CREATE TABLE ...
your_date_column DATETIME DEFAULT CURRENT_TIMESTAMP
...
对于现有表,使用ALTER TABLE 语句一个>:
ALTER TABLE your_table
ALTER COLUMN date_column SET DEFAULT CURRENT_TIMESTAMP
除非您为 date_column 指定一个值,否则默认值为日期 &运行 INSERT 语句的时间.NULL
和 DEFAULT
或有效值,否则使用默认约束,假设列可以为空.
Unless you specify a value to for the date_column, the default will be the date & time the INSERT statement was run. NULL
and DEFAULT
or valid values to use the default constraint otherwise, assuming the column is nullable.
这篇关于mysql 自动存储记录创建时间戳的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:mysql 自动存储记录创建时间戳


基础教程推荐
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 带更新的 sqlite CTE 2022-01-01