Mysql官方參考文檔關於布爾類型的說明:html
BOOL, BOOLEANjava
These types are synonyms(同義詞) for TINYINT(1). A value of zero is considered(認爲是) false. Nonzero(不爲0) values are considered truesql
Tinyint(1) 就只用來保存 bool 值 只有0和1 不要保存其餘的值ide
若是要保存多的值,就用 Tinyint(4) .net
更多能夠參考:關於 MySQL 的 boolean 和 tinyint(1)htm