What's the difference between MySQL BOOL and BOOLEAN column data types?

ikostia picture ikostia · Jan 21, 2011 · Viewed 46.3k times · Source

I'm using MySQL version 5.1.49-1ubuntu8.1. It allows me to define columns of two different data types: BOOL and BOOLEAN. What are the differences between the two types?

Answer

Adam Prax picture Adam Prax · Jan 21, 2011

They are both synonyms for TINYINT(1).