Reputation: 435
What is the difference between BOOL
and BOOLEAN
data types in MySQL?
Can BIT
or TINYINT
represent Booleans?
Upvotes: 2
Views: 1029
Reputation: 204924
BOOL
and BOOLEAN
are both synonyms of TINYINT(1)
. So there is no difference.
Upvotes: 5