mysql varchar 字符串长度设定
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql varchar 字符串长度设定相关的知识,希望对你有一定的参考价值。
一、确定varchar长度设定对文件存储大小的影响
mysql 8.17版本中,经过本人测定。varchar2(M)的存储大小,近似于(实际存储字符数)*1个字符的字节数(根据编码确定,utf=3, utf8mb4=4)。跟M的大小无关。M只是限定长度,但跟能不能建立索引也有关。
二、可建立索引的varchar长度
mysql>alter table test4 add column f varchar(768);
mysql>create index idx_test4_f on test4(f);
结果:
create index idx_test4_f on test4(f)
OK
时间: 0.011s
mysql>alter table test4 add column g varchar(769);
mysql>create index idx_test4_g on test4(g);
create index idx_test4_g on test4(g)
1071 - Specified key was too long; max key length is 3072 bytes
时间: 0.003s
原因:
因为字符串的字符集采用了utf8mb4,一个字符占4个字节,3072/4=768.
结论:
所以,字符串长度最好限制在768之内。
以上是关于mysql varchar 字符串长度设定的主要内容,如果未能解决你的问题,请参考以下文章