Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法理解 int(1) 和 int(8) 之间的区别,因为 int(1) 也可以有 999.9999。
如果是这样,区别在哪里?INT 数据类型上的长度修饰符是否会影响可存储的值的范围?例如,可以将六位数字存储在 INT(1) 列中吗?
这是一个可选的定义。它没有定义字段的大小。int它定义了表示。如果您添加ZEROFILL到定义中,则该字段的其余部分将用零填充,否则用空格填充。
int
ZEROFILL
见数字类型
好处在这里解释