gpt4 book ai didi

mysql - 不正确的整数值 : '' for column

转载 作者:行者123 更新时间:2023-11-30 23:14:07 26 4
gpt4 key购买 nike

下面的查询有什么问题?我想将一些字段从一个表复制到另一个表。

INSERT INTO `dle_post_plus` 
(
`news_id`, `news_read`, `allow_rate`, `rating`,
`vote_num`, `votes`, `view_edit`, `access`,
`editdate`, `editor`, `reason`, `user_id`
)
SELECT `id`, `news_read`, `allow_rate`, `rating`,
`vote_num`, `votes`, `view_edit`, `access`,
`editdate`, `editor`, `reason`, `user_id`
FROM `dle_post`
LEFT JOIN dle_users
ON (dle_post.autor=dle_users.name)

错误:

#1366 - Incorrect integer value: '' for column 'editdate' at row 1

最佳答案

确保两个表中的所有列都是相同类型。检查 editdate。可能在 dle_post_plus 中列是 INT 而在 dle_post 中是 varchar。

关于mysql - 不正确的整数值 : '' for column,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18665591/

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