As I SET cust_fax in a table in MySQL like this:
SET
cust_fax integer(10) NOT NULL,
and then I insert value like this:
<
You can also change the data type to bigInt and it will solve your problem, it's not a good practice to keep integers as strings unless needed. :)
ALTER TABLE T_PERSON MODIFY mobile_no BIGINT;