I am creating a table with two columns. [User ID, Number of Points]
Number of Points has a max value of ~100 billion.
Would there be an issue storing Number of Points as an INT value? Or would it need to be a VARCHAR?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use BIGINT, it will easily hold your range of values.
The maximum value unsigned is (2 ^ 64) – 1, or: 18,446,744,073,709,551,615.