I made a table for storing contact record of user of my website. It also contains a 10 digit mobile no.
Table structure is like this:
CREATE TABLE co
It is because of the max size of type INT you need to use a different type to hold a number that large. Try using BIGINT.