作者:Lollipop小呆_971 | 来源:互联网 | 2023-10-13 13:27
MySQL整数位数限制基本没有意义。例子:mysqlcreatetabletest_tb(idint(1),col2tinyint(1));mysqlinsertintotes
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补充。