Johnny
Member since Jun 4, 2022
- Profile: /members/14561-johnny.htm
- Comments: 1
Recent Blog Comments By Johnny
-
Why I Use TINYINT Columns Instead Of BIT Columns For Boolean Data In A MySQL Application
Posted on Jun 4, 2022 at 9:40 AM
Bits use less storage than tinyint (significantly less, as the number of bit columns increases). Bits process faster than tinyints. A programmer who uses tinyint is signaling to the next programmer, and the next programmer will assume, the data is meant to contain values greater than 1. If 1... read more »