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
This question has been answered but I figured I'd throw in my $0.02.
I often use a CHAR(0), where '' == true and NULL == false.
From mysql docs:
CHAR(0)is also quite nice when you need a column that can take only two values: A column that is defined asCHAR(0)NULLoccupies only one bit and can take only the valuesNULLand''(the empty string).