Reputation: 70307
In MySQL, what is the difference betwen TINYINT(1) and Boolean?
Upvotes: 2
Views: 215
Reputation: 838156
From the manual:
BOOL, BOOLEAN These types are synonyms for TINYINT(1).
BOOL, BOOLEAN
These types are synonyms for TINYINT(1).
There is no difference.
Upvotes: 4
Reputation: 71384
BOOL or BOOLEAN and just synonyms for TINYINT(1)
Upvotes: 0
Reputation: 254906
There is no. BOOLEAN is an alias to TINYINT(1)
BOOLEAN
TINYINT(1)