概述
我必须保存值-1.使用tinyint(1)或tinyint(2)的数据类型更正确吗?为什么?
我知道我也可以使用tinyint tinyint(1)存储更多数字,但我想知道你在我的情况下使用了什么.
解决方法:
您可以使用DECIMAL,它可能是存储负数的最佳数据类型.
Standard SQL requires that DECIMAL(5,2) be able to store any value
with five digits and two decimals, so values that can be stored in the
salary column range from -999.99 to 999.99
虽然在您的情况下您可以使用TINYINT(1),因为它需要1个字节的存储空间,其范围是-128到127.
在旁注:
M indicates the maximum display width for integer types. The maximum
display width is 255. Display width is unrelated to the range of
values a type can contain, as described in Section 11.2, “Numeric
Types”. For floating-point and fixed-point types, M is the total
number of digits that can be stored.
标签:mysql
来源: https://codeday.me/bug/20190708/1407198.html
最后
以上就是无聊方盒为你收集整理的decimal 占位吗 负数_mysql – 用于存储负数的正确数据类型的全部内容,希望文章能够帮你解决decimal 占位吗 负数_mysql – 用于存储负数的正确数据类型所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复