1/*
2The value 3172978990 is greater than 2147483647 – the maximum value for INT – hence the error.
3
4Also note that the (10) in INT(10) does not define the "size" of an integer.
5It specifies the display width of the column. This information is advisory only.
6
7To fix the error, change your datatype to VARCHAR.
8Phone and Fax numbers should be stored as strings
9*/