MYSQL数据库规范-字段规范-CSDN博客网友收藏

MYSQL数据库规范-字段规范-CSDN博客

文章浏览阅读372次。(1)用好数值类型 tinyint(1Byte) smallint(2Byte) mediumint(3Byte) int(4Byte) bigint(8Byte) 【bad case】int(1)/int(11) (2)字符转化为数字 用int而不是char(15)存储ip (3)优先使用enum或set 例如:sex enum (‘F’,‘M’) (4)避免......
阅读全文