当在表中插入一些行时,我收到此错误:
SQLSTATE [22007]:无效的日期时间格式:1292日期时间值不正确:' 2017-03-26 02:00:00'为列'创建 _at' 在第1行
我正在以正确的格式插入:Y-m-d H:我:那么是什么导致了这个问题?
更新
CREATE TABLE `posts` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`excerpt` text COLLATE utf8mb4_unicode_ci,
`body` text COLLATE utf8mb4_unicode_ci NOT NULL,
`image_path` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`markdown` tinyint(1) NOT NULL DEFAULT '0',
`published` tinyint(1) NOT NULL DEFAULT '0',
`views` int(10) UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint(20) UNSIGNED NOT NULL,
`published_at` datetime DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
我正在使用500次重复循环将虚拟数据插入此表,它设法插入472个帖子,然后因上述错误而失败。
以下是生成的sql查询的样子,我不是自己写的,但是当我使用php对象和方法创建等时,我使用的框架生成它
"query" => "insert into `posts` (`user_id`, `title`, `excerpt`, `body`, `s
lug`, `image`, `created_at`, `updated_at`, `published_at`, `published`, `views`) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)3
8;5;208m"
"bindings" => array:11 [
0 => 1
1 => "Enim autem et quis consequatur vel deleniti et."
2 => "Voluptatibus nobis et et quaerat at inventore incidunt et qui ea co"
3 => """
Soluta distinctio dolorem ut officiis dolores quisquam esse sint. Repellendus est atque enim
quia.\n
"""
4 => "ab-itaque-facilis-culpa-suscipit-et-ratione-doloremque"
5 => "post_img_1.jpg"
6 => "2017-03-06 10:00:00"
7 => "2017-03-06 10:00:00"
8 => "2017-03-06 17:00:00"
9 => true
10 => 49
]
"time" => 29.97
答案 0 :(得分:3)
您的数据存储在哪个时区?
我认为问题不是日期时间值的格式,而是值本身。
我注意到您的一些数据是意大利语,导致错误的值是2017-03-26 02:00:00
,这实际上是意大利的无效日期时间,因为那是在夏令时开始的时候。
意大利的时钟将从2017-03-26 01:59:59
跳到2017-03-26 03:00:00
,因此您尝试插入的值无效。