How to save this number 103636927986606774863 in any numeric format in mysql -


i got error when trying save number, have referred mysql doc need know other options save number value grater 9223372036854775807.

thanks

you can store using datatype called numeric

below workaround solution

you can store numeric(21,0) // 21 limit of number of digits 

Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -