mysql 拷贝表数据报 1264 Out of range value for column错误处理方法
背景
mysql 版本:8.0.x
## 使用以下语句在mysql 8.0.26报 1264 Out of range value for column错误
insert into table_01 select * from table_02;
报 1264 Out of range value for column
解决方法
将拷贝表数据时,指定字段名,如:
## 指定字段名 下面的表名和字段名,请根据实际情况进行调整
insert into table_01(id, version, code)
原创
2022-03-21 20:25:03 ·
3363 阅读 ·
0 评论