mysql 布尔类型boolean tinyint(1) mysql官方文档指出目前不支持boolean类型,需要使用的话用tinyint(1)代替。如果你定义了布尔类型,它会自动给你转换成tinyint。 BOOL,BOOLEAN是TINYINT(1)的同义词。zero值被视为假。非zero值视为真。 在mysql里面常量TRUE
mysql 布尔类型boolean tinyint(1)
mysql官方文档指出目前不支持boolean类型,需要使用的话用tinyint(1)代替。如果你定义了布尔类型,它会自动给你转换成tinyint。
BOOL,BOOLEAN是TINYINT(1)的同义词。zero值被视为假。非zero值视为真。
在mysql里面常量TRUE等于1,常量FALSE等于0。常量名可以写成大写或小写。
SELECT TRUE,true,FALSE,false;
-> 1,1,0,0
需要注意的一点就是 只有tinyint(1)可以在查询的时候帮你转换成true false,tinyint(4)是不会的。切记。
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn