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)
Try this
update IGNORE new2006 set new2006.emp=cast(emp as unsigned) where IsNum(emp)=0;