What is the different between bit(1) and tinyint(1) are they the same? This happens while we migrated data from a older version of mysql (maybe 5.1) to the latest version (say 5.5). Are they functionally the same
What is the different between bit(1) and tinyint(1) are they the same? This happens
Share
A bit-field type.
Mindicates the number of bits per value, from 1 to 64. The default is 1 if M is omitted.A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255.
See Numeric Type Overview