MySQL Timestamp - why all zeros?(MySQL 时间戳 - 为什么全为零?)
问题描述
我正在使用 PHPMyAdmin,并且有一个名为时间戳"的 MySQL 表列.类型(惊喜!)是 TIMESTAMP,在属性"中我将它设置为 ON UPDATE CURRENT_TIMESTAMP.
I'm using PHPMyAdmin and I've got a MySQL table column called "timestamp." The type (surprise!) is TIMESTAMP, and in 'attributes' I've set it to ON UPDATE CURRENT_TIMESTAMP.
然而,每条新记录都有一个类似这样的时间戳:
However, each new record gets a timestamp that looks like this:
0000-00-00 00:00:00
我已经明确地将默认值设置为无,但是当我保存并返回查看时,它被设置为如上所示的全零.
I have explicitly set the default value to none, but when I save and come back to look, it is set to all zeros as above.
相关的 PHP 记录页面点击了这个查询:
The relevant PHP records page hits with this query:
$query = "INSERT INTO `pagehit` (user_id, pageurl)
VALUES ('" . $userid . "', '" . $pageurl . "')";
整个过程都在 XAMPP 下运行.
The whole thing is running under XAMPP.
我错过了什么?
推荐答案
我错过了什么?
你不更新:)
使用 DEFAULT CURRENT_TIMESTAMP 和 ON UPDATE CURRENT_TIMESTAMP
这篇关于MySQL 时间戳 - 为什么全为零?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL 时间戳 - 为什么全为零?
基础教程推荐
- 在PHP中根据W3C规范Unicode 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
