MySQL-Boolean型
MySQL内部保存Boolean型是按照 「tinyint」1字节型「-128~127」的数字来保存。
插入true 保存为 1
插入false保存为 0
= true 检索出 true,1
= false 检索出 false,0
is true 检索出 非 0
is false 检索出 0
更改Boolean
update user set sex=sex^1 where id=1;
update user set sex=abs(1-sex) where id=1;