What is the difference between tinyint, smallint, mediumint, bigint and int in MySQL?

381,915

Solution 1

They take up different amounts of space and they have different ranges of acceptable values.

Here are the sizes and ranges of values for SQL Server, other RDBMSes have similar documentation:

Turns out they all use the same specification (with a few minor exceptions noted below) but support various combinations of those types (Oracle not included because it has just a NUMBER datatype, see the above link):

             | SQL Server    MySQL   Postgres    DB2
---------------------------------------------------
tinyint      |     X           X                
smallint     |     X           X         X        X
mediumint    |                 X
int/integer  |     X           X         X        X 
bigint       |     X           X         X        X

And they support the same value ranges (with one exception below) and all have the same storage requirements:

            | Bytes    Range (signed)                               Range (unsigned)
--------------------------------------------------------------------------------------------
tinyint     | 1 byte   -128 to 127                                  0 to 255
smallint    | 2 bytes  -32768 to 32767                              0 to 65535
mediumint   | 3 bytes  -8388608 to 8388607                          0 to 16777215
int/integer | 4 bytes  -2147483648 to 2147483647                    0 to 4294967295
bigint      | 8 bytes  -9223372036854775808 to 9223372036854775807  0 to 18446744073709551615 

The "unsigned" types are only available in MySQL, and the rest just use the signed ranges, with one notable exception: tinyint in SQL Server is unsigned and has a value range of 0 to 255

Solution 2

The size of storage required and how big the numbers can be.

On SQL Server:

  • tinyint 1 byte, 0 to 255
  • smallint 2 bytes, -215 (-32,768) to 215-1 (32,767)
  • int 4 bytes, -231 (-2,147,483,648) to 231-1 (2,147,483,647)
  • bigint 8 bytes, -263 (-9,223,372,036,854,775,808) to 263-1 (9,223,372,036,854,775,807)

You can store the number 1 in all 4, but a bigint will use 8 bytes, while a tinyint will use 1 byte.

Solution 3

Those seem to be MySQL data types.

According to the documentation they take:

  1. tinyint = 1 byte
  2. smallint = 2 bytes
  3. mediumint = 3 bytes
  4. int = 4 bytes
  5. bigint = 8 bytes

And, naturally, accept increasingly larger ranges of numbers.

Solution 4

When it gets to real world usage of these datatypes, it is very important that you understand that using certain integer types could just be an overkill or under used. For example, using integer datatype for employeeCount in a table say employee could be an overkill since it supports a range of integer values from ~ negative 2 billion to positive 2 billion or zero to approximately 4 billion (unsigned). So, even if you consider one of the US biggest employer such as Walmart with roughly about 2.2 million employees using an integer datatype for the employeeCount column would be unnecessary. In such a case you use mediumint (that supports from 0 to 16 million (unsigned)) for example. Having said that if your range is expected to be unusually large you might consider bigint which as you can see from Daniel's notes supports a range larger than I care to decipher.

Solution 5

The difference is the amount of memory allocated to each integer, and how large a number they each can store.

Share:
381,915
Sein Kraft
Author by

Sein Kraft

Just a simple developer.

Updated on July 31, 2022

Comments

  • Sein Kraft
    Sein Kraft almost 2 years

    What is the difference between tinyint, smallint, mediumint, bigint and int in MySQL?

    In what cases should these be used?

  • biox
    biox over 10 years
    I didn't know that unsigned types are available only in MySQL, this is a huge advantage of MySQL over other RDBMS. Anything changed since the day this answer posted?
  • Pacerier
    Pacerier over 9 years
    @Daniel, What are they thinking, why is there one for 3 bytes but none for 6 bytes?
  • Mihai Matei
    Mihai Matei over 8 years
    @Pacerier probably they didn't know how to name it :))
  • MarioDS
    MarioDS over 7 years
    They should've called that a bigint and instead of bigint, a humongousint.
  • georaldc
    georaldc over 7 years
    How about biggerint
  • osiris
    osiris almost 7 years
    greatint could be an option, being Oracle an USA company. :)
  • kiltannen
    kiltannen about 6 years
    In your example of WalMart with 2.2M active employees - I would think that with staff turnover of approx 50% annually that an INT type on EmployeeID would be the minimum needed. What do you'all think? Granted - for MOST normal companies an INT type would be WAY overkill!
  • jinglesthula
    jinglesthula about 6 years
    The lack of brobdingnagianint is a big oversight. ("How big?" you ask...)
  • Praveen
    Praveen over 4 years
    Here I am one year later thinking why it couldn't be titanint :D
  • Code Novice
    Code Novice over 4 years
    Keep the Int Great Again