mysql的bool类型 用什么替代,
发现没有bool , 所以我准备用 bit(1)替代,如下
ALTER TABLE  User add column `Money` bit(1) default 0;;
有人说用tinyint 或者枚举, 我发现没有这好。?