MySQL整数位数限制

MySQL整数位数限制基本没有意义。
例子:
mysql> create table test_tb(id int(1), col2 tinyint(1));
mysql> insert into test_tb values(256, 257);
mysql> select * from test_tb;
+——+——+
| id | col2 |
+——+——+
| 256 | 127 |
+——+——+
说明:
整数的位数限制只是在显示时,如果没有数据中的字符长度不够用0补充。
【MySQL整数位数限制】转载于:https://my.oschina.net/tangzhichao/blog/781451

    推荐阅读