0

当我插入任何数据但我在开始级别只有姓名和电子邮件时

INSERT INTO `users`(`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (3,"text","xyz@gmail.com","","","","","")

但是出现这样的错误

#1292 - 不正确的日期时间值:第 1 行的列 'email_verified_at' 的''

4

2 回答 2

0

email_verified_at为查询中为空的字段输入正确的值。

于 2020-01-23T05:41:13.307 回答
0

将类型设置email_verified_attimestamp并选择默认值current_timestamp,然后您可以在查询中将该字段留空,我认为这更好。

于 2020-01-23T05:50:35.220 回答