数值
- tinyint 0-255
- int 0-42亿
字符串
- char(M) 0-255
- varchar(M) 0-65535
- tinytext 0-255
- text 0-65535
- mediumtext 0-16777215
- longtext 0-4294967295
数据字段属性
- unsigned 无符号
- zerofill 填充
- auto_increment 自动增长(加主键)
- null
- not null
- default 默认值
字符集
mysql服务器默认字符集
- 建议客户端字符集是utf8
default-character-set = utf8 - mysql服务端字符集为utf8
character-set-server = utf8 - mysql服务端校验字符集
collation-server = utf8_general_ci
网友评论