Home > Database > Mysql Tutorial > mysql 布尔类型boolean tinyint(一)

mysql 布尔类型boolean tinyint(一)

WBOY
Release: 2016-06-07 16:16:08
Original
2113 people have browsed it

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
Copy after login



需要注意的一点就是 只有tinyint(1)可以在查询的时候帮你转换成true false,tinyint(4)是不会的。切记。
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template