Sky Archive

DBMS/MySQL

[MySQL] smallint? tinyint? int의 종류와 범위

Anchovy ʕ-᷅ᴥ-᷄ʔ 2021. 7. 6. 10:46

int의 종류와 범위, 저장공간은 아래와 표를 참고하세요.😊

MySQL, SQL Server, Azure SQL Database, Parallel Data Warehouse 등 에서 사용되는 데이터 타입입니다.


Data type Range Storage
bigint -2^63 (-9,223,372,036,854,775,808) to 2^63-1 (9,223,372,036,854,775,807) 8 Bytes
int -2^31 (-2,147,483,648) to 2^31-1 (2,147,483,647) 4 Bytes
smallint -2^15 (-32,768) to 2^15-1 (32,767) 2 Bytes
tinyint 0 to 255 1 Byte

 

 

출처 https://docs.microsoft.com/ko-kr/sql/t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql?redirectedfrom=MSDN&view=sql-server-ver15#examples