I have a CSV I\'m importing into our database. One of the \"columns\" contains data that should be an INT but some rows have numbers that only fall in the BIGINT ra
You could also convert the value to a string, trim it to length and convert to int. not the best way, but a safe easy way for sure