MySQL 最大字符长度存储
MySQL maximum character length storage
我将如何创建一个以最大长度为条件的列?我正在使用 PHPMyAdmin。如果有人可以提供帮助,我将不胜感激。提前致谢。
既然你提到 PHPMyAdmin 作为你的工具,我假设你的数据库引擎是 MySQL。
MySQL中存储容量最大的字符串类型是LONGBLOB
和LONGTEXT
。它们都需要 L + 4 bytes
的存储空间,其中 L < 2^32
.
L represents the actual length in bytes of a given string value.
4 bytes are needed to store the length of the value
参考文献:
我将如何创建一个以最大长度为条件的列?我正在使用 PHPMyAdmin。如果有人可以提供帮助,我将不胜感激。提前致谢。
既然你提到 PHPMyAdmin 作为你的工具,我假设你的数据库引擎是 MySQL。
MySQL中存储容量最大的字符串类型是LONGBLOB
和LONGTEXT
。它们都需要 L + 4 bytes
的存储空间,其中 L < 2^32
.
L represents the actual length in bytes of a given string value.
4 bytes are needed to store the length of the value
参考文献: