gpt4 book ai didi

MySQL 字段 DATETIME 截断 ISO8601

转载 作者:行者123 更新时间:2023-11-29 04:34:53 25 4
gpt4 key购买 nike

像这样创建 MySQL/MariaDB 表

CREATE TABLE `testTable` (
`id` int(11) NOT NULL,
`timeinfo` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8

并像这样插入完整的 ISO8601 值:

MariaDB [test]> INSERT INTO testTable VALUES (1, '2500-12-31T00:00:00.000Z');
Query OK, 1 row affected, 1 warning (0.00 sec)

MariaDB [test]> show warnings;
+---------+------+-----------------------------------------------+
| Level | Code | Message |
+---------+------+-----------------------------------------------+
| Warning | 1265 | Data truncated for column 'timeinfo' at row 1 |
+---------+------+-----------------------------------------------+
1 row in set (0.00 sec)

MariaDB [test]> select * from testTable;
+----+---------------------+
| id | timeinfo |
+----+---------------------+
| 1 | 2500-12-31 00:00:00 |
+----+---------------------+
1 row in set (0.01 sec)

我不明白什么被截断了,ZULU TimeZone 中的“Z”?


是否可以在MySQL/MariaDB的字段类型中包含完整的信息?

如果是,应该使用哪种字段数据类型?

最佳答案

“Z”是一个 special time zone designator .意思是“时间是 UTC 时区”。

MySQL 5.7 日期时间和时间戳类型无法存储时区信息。 MySQL 不理解“Z”。

如果您需要存储时区,请使用附加字段。

关于MySQL 字段 DATETIME 截断 ISO8601,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45817809/

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