๋งค๋ฒ ๊ฒ์ํ๊ธฐ ๊ท์ฐฎ์์ ํผ์ด ใ ใ
Table 11.1 Required Storage and Range for Integer Types Supported by MySQL
Type | Storage (Bytes) |
์ต์๊ฐ (signed) |
์ต์๊ฐ (unsigned) |
์ต๋๊ฐ (signed) |
์ต๋๊ฐ (unsigned) |
TINYINT | 1 | -128 | 0 | 127 | 255 |
SMALLINT | 2 | -32768 | 0 | 32767 | 65535 |
MEDIUMINTINT | 3 | -8388608 | 0 | 8388607 | 16777215 |
INT | 4 | -2147483648 | 0 | 2147483647 | 4294967295 |
BIGINT | 8 | -2^63 | 0 | 2^63 - 1 | 2^64 - 1 |
* ์ถ์ฒ : https://dev.mysql.com/doc/refman/8.0/en/integer-types.html
728x90