I\'m getting an odd \'Truncated incorrect INTEGER value\' error when I run the following UPDATE query:
update tbl set projectNumber = right(comments, 7) wher
Another common cause for this warning is white space in the string to be converted. Use trim() before convert() to get rid of that.
trim()
convert()