美文网首页
数据类型

数据类型

作者: AFew | 来源:发表于2018-12-12 18:18 被阅读0次
    数值
    • 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服务器默认字符集

    1. 建议客户端字符集是utf8
      default-character-set = utf8
    2. mysql服务端字符集为utf8
      character-set-server = utf8
    3. mysql服务端校验字符集
      collation-server = utf8_general_ci

    相关文章

      网友评论

          本文标题:数据类型

          本文链接:https://www.haomeiwen.com/subject/vbmphqtx.html