您好,登錄后才能下訂單哦!
前言:
整型是MySQL中最常用的字段類型之一,通常用于存儲整數,其中int是整型中最常用的,對于int類型你是否真正了解呢?本文會帶你熟悉int類型相關知識,也會介紹其他整型字段的使用。
整數類型 | 字節 | 有符號范圍 | 無符號范圍 |
---|---|---|---|
TINYINT | 1 | -128 ~ 127 | 0 ~ 255 |
SMALLINT | 2 | -32768 ~ 32767 | 0 ~ 65535 |
MEDIUMINT | 3 | -8388608 ~ 8388607 | 0 ~ 16777215 |
INT/INTEGER | 4 | -2147483648 ~ 2147483647 | 0 ~ 4294967295 |
BIGINT | 8 | -9223372036854775808 ~ 9223372036854775807 | 0 ~ 18446744073709551615 |
表格一共有四列分別表示:字段類型, 占用字節數, 有符號范圍, 無符號范圍。<br />我們拿int類型為例:<br />int類型, 占用字節數為4byte, 學過計算機原理的同學應該知道, 字節(byte)并非是計算機存儲的最小單位, 還有比字節(byte)更小的單位, 也就是位(bit),一個位就代表一個0或1; 8個位組成一個字節; 一般字節用大寫B來表示byte, 位用小寫b來表示bit.
計算機存儲單位的換算:
1B=8b
1KB=1024B
1MB=1024KB
那么根據int類型允許存儲的字節數是4個字節, 我們就能換算出int?UNSIGNED(無符號)類型的能存儲的最小值為0, 最大值為4294967295(即4B=32b, 最大值即為32個1組成,即4294967295換算成二進制則是32個1)。
mysql> CREATE TABLE test_int (
-> col1 TINYINT,
-> col2 SMALLINT,
-> col3 MEDIUMINT,
-> col4 INT,
-> col5 BIGINT
-> ) ENGINE = INNODB DEFAULT CHARSET = utf8;
Query OK, 0 rows affected (0.01 sec)
mysql> show create table test_int\G
*************************** 1. row ***************************
Table: test_int
Create Table: CREATE TABLE `test_int` (
`col1` tinyint(4) DEFAULT NULL,
`col2` smallint(6) DEFAULT NULL,
`col3` mediumint(9) DEFAULT NULL,
`col4` int(11) DEFAULT NULL,
`col5` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
mysql> insert into test_int values (1234,123456,12345678,12345678901,12345678901234567890);
Query OK, 1 row affected, 5 warnings (0.00 sec)
mysql> insert into test_int values (-1234,-123456,-12345678,-12345678901,-12345678901234567890);
Query OK, 1 row affected, 5 warnings (0.01 sec)
mysql> show warnings;
+---------+------+-----------------------------------------------+
| Level | Code | Message |
+---------+------+-----------------------------------------------+
| Warning | 1264 | Out of range value for column 'col1' at row 1 |
| Warning | 1264 | Out of range value for column 'col2' at row 1 |
| Warning | 1264 | Out of range value for column 'col3' at row 1 |
| Warning | 1264 | Out of range value for column 'col4' at row 1 |
| Warning | 1264 | Out of range value for column 'col5' at row 1 |
+---------+------+-----------------------------------------------+
5 rows in set (0.01 sec)
mysql> select * from test_int;
+------+--------+----------+-------------+----------------------+
| col1 | col2 | col3 | col4 | col5 |
+------+--------+----------+-------------+----------------------+
| 127 | 32767 | 8388607 | 2147483647 | 9223372036854775807 |
| -128 | -32768 | -8388608 | -2147483648 | -9223372036854775808 |
+------+--------+----------+-------------+----------------------+
從上述測試中我們可以看出:有符號時,各種整型類型最大的存儲范圍,當存儲數字大小不在存儲范圍時,MySQL會產生告警,但數字可以插入,默認截取為可存儲的最大值或最小值。
我們經常聽到這句話:int(M)中的M代表最大顯示寬度,"最大顯示寬度"我們第一反應是該字段的值最大能允許存放的值的寬度,以為我們建了int(1),就不能存放數據10了, 其實不是這個意思。<br />整數列的顯示寬度與mysql需要用多少個字符來顯示該列數值,與該整數需要的存儲空間的大小都沒有關系,比如,不管設定了顯示寬度是多少個字符,int都是占用4個字節,bigint都要占用8個字節。即int(5)和int(10)可存儲的范圍一樣。<br />整型字段有個ZEROFILL屬性(0填充),在數字長度不夠的數據前面填充0,以達到設定的長度。加上ZEROFILL后M才表現出不同,當使用ZEROFILL時,默認會自動加unsigned(無符號)屬性。比如 INT(3) ZEROFILL,你插入到數據庫里的是10,則實際插入為010,也就是在前面補充加了一個0,下面我們來測試下:
mysql> CREATE TABLE test_int_zerofill (
-> col1 INT(5) ZEROFILL,
-> col2 INT ZEROFILL,
-> col3 INT(5)
-> ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Query OK, 0 rows affected (0.01 sec)
mysql> show create table test_int_zerofill\G
*************************** 1. row ***************************
Table: test_int_zerofill
Create Table: CREATE TABLE `test_int_zerofill` (
`col1` int(5) unsigned zerofill DEFAULT NULL,
`col2` int(10) unsigned zerofill DEFAULT NULL,
`col3` int(5) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
mysql> insert into test_int_zerofill values (12,12,12);
Query OK, 1 row affected (0.00 sec)
mysql> select * from test_int_zerofill;
+-------+------------+------+
| col1 | col2 | col3 |
+-------+------------+------+
| 00012 | 0000000012 | 12 |
+-------+------------+------+
1 row in set (0.00 sec)
那么有同學可能會問zerofill有什么應用場景呢,比較常用的應該是月份或日期前補0,這樣顯示的會規范些
CREATE TABLE `t_zerofill` (
`year` year(4) DEFAULT NULL,
`month` int(2) unsigned zerofill DEFAULT NULL,
`day` int(2) unsigned zerofill DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
mysql> insert into t_zerofill values (2019,6,5);
Query OK, 1 row affected (0.01 sec)
mysql> insert into t_zerofill values (2019,6,18);
Query OK, 1 row affected (0.00 sec)
mysql> insert into t_zerofill values (2019,10,1);
Query OK, 1 row affected (0.00 sec)
mysql> insert into t_zerofill values (2019,11,11);
Query OK, 1 row affected (0.01 sec)
mysql> select * from t_zerofill;
+------+-------+------+
| year | month | day |
+------+-------+------+
| 2019 | 06 | 05 |
| 2019 | 06 | 18 |
| 2019 | 10 | 01 |
| 2019 | 11 | 11 |
+------+-------+------+
4 rows in set (0.00 sec)
經過上面的介紹,關于不同整型字段的選取變得容易很多。本著最小化存儲的原則,當然是能選TINYINT不選SMALLINT,能選MEDIUMINT不選INT了,不過一切都要滿足業務的前提下盡量選取占用字節更少的類型。對于確定只存儲正整數的字段,可以加上unsigned屬性,這樣會使存儲范圍更大,比如當字段有AUTO_INCREMENT屬性時,我們可以為int類型加上unsigned屬性。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。