Since MySQL doesn\'t seem to have any \'boolean\' data type, which data type do you \'abuse\' for storing true/false information in MySQL?
Especially in the context
BOOL and BOOLEAN are synonyms of TINYINT(1). Zero is false, anything else is true. More information here.
BOOL
BOOLEAN
TINYINT(1)
false
true