Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 mySQL 数据库中存储真/假/1/0 值的最合适(读取最少的数据消耗)数据字段是什么?
我以前使用过一个字符长的 tinyint,但我不确定它是否是最好的解决方案?
谢谢!
tinyint(1)
基本上是 BOOL 数据类型的别名,所以很好。
看这里
此外,这里已经介绍过:
用于存储布尔值的 MySQL 数据类型