Please enlighten me...
Which data type consumes the smallest, TINYINT(1) or BIT(1)?
I know that TINYINT(1) and BIT(1) is considered the same according to majority of answers here.
Doesn't TINYINT(1) accepts 0-9 while BIT(1) can only 1 or 0. From the looks of it TINYINT uses larger storage because it can accept 2-9 while BIT only 1 and 0.