tinyint

[1/1]

  1. BIT vs. TINYINT: Choosing the Right Data Type for Your MySQL Booleans
    Storage size: BIT: Stores a single binary digit (0 or 1), using 1 bit of space. TINYINT: Stores a small integer value, ranging from -128 to 127 (signed) or 0 to 255 (unsigned), using 1 byte (8 bits) of space