表table1中字段id值为 '010101*'
现要将该id值转换为数字类型转存入table2select cast(id as signed) from table1;
可以正常执行查出 10101create table table2
(select cast(id as signed) from table1);
报[Err] 1292 - Truncated incorrect INTEGER value: '010101*'
求解!!!!!!!!!!!!