mysql 自动存储记录创建时间戳

mysql automatically store record creation timestamp(mysql 自动存储记录创建时间戳)
本文介绍了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 语句的时间.NULLDEFAULT 或有效值,否则使用默认约束,假设列可以为空.

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 自动存储记录创建时间戳的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)