URL 的最佳数据库字段类型

2021-11-20 00:00:00 sql database mysql

我需要在 MySQL 表中存储一个 url.定义包含不确定长度的 URL 的字段的最佳做法是什么?

解决方案

  1. 最低公分母最大值流行网络浏览器中的 URL 长度:2,083 (Internet Explorer)

<块引用>

  1. http://dev.mysql.com/doc/refman/5.0/en/char.html
    VARCHAR 列中的值是可变长度的字符串.在 MySQL 5.0.3 之前,长度可以指定为 0 到 255 之间的值,在 5.0.3 及更高版本中可以指定为 0 到 65,535.MySQL 5.0.3 及更高版本中 VARCHAR 的有效最大长度受最大行大小(65,535 字节,在所有列之间共享)和使用的字符集的约束.

<块引用>

  1. 所以...
    <MySQL 5.0.3 使用TEXT

    >= MySQL 5.0.3 使用 VARCHAR(2083)

I need to store a url in a MySQL table. What's the best practice for defining a field that will hold a URL with an undetermined length?

解决方案

  1. Lowest common denominator max URL length among popular web browsers: 2,083 (Internet Explorer)

  1. http://dev.mysql.com/doc/refman/5.0/en/char.html
    Values in VARCHAR columns are variable-length strings. The length can be specified as a value from 0 to 255 before MySQL 5.0.3, and 0 to 65,535 in 5.0.3 and later versions. The effective maximum length of a VARCHAR in MySQL 5.0.3 and later is subject to the maximum row size (65,535 bytes, which is shared among all columns) and the character set used.

  1. So ...
    < MySQL 5.0.3 use TEXT
    or
    >= MySQL 5.0.3 use VARCHAR(2083)

相关文章