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