gpt4 book ai didi

php - MySQL - 新数据库记录需要静态时间戳

转载 作者:行者123 更新时间:2023-11-29 14:55:54 25 4
gpt4 key购买 nike

我有一个 MySQL 表,我需要在其中存储创建行时的时间戳(注册时间戳)。如何创建一个仅在创建时带有时间戳且在更新行时不带有时间戳的字段?

最佳答案

当您创建表时,您将该列的默认值设置为 current_timestamp()。沿着这些思路。

create table `x` (
id integer auto_increment not null,
timestamp TIMESTAMP default current_timestamp
data CHAR(100)
);

并且您没有在插入/更新时设置该字段。

关于php - MySQL - 新数据库记录需要静态时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4640714/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com