The below statement returns "Error Code: 1292. Truncated incorrect INTEGER value: '95.00' 1.132 sec "
update new2006 set new2006.emp=cast(emp as unsigned) where IsNum(emp)=0;
But if I use the below statement, I can get result 95 successfully.
select cast(emp as unsigned) from new2006 where IsNum(emp)=0;
PS:The data type of emp is varchar(7).