当前位置:   article > 正文

MySQL 中 blob 和 text 数据类型详解_mysql blob

mysql blob

前言:

前面文章我们介绍过一些常用数据类型的用法,比如 int、char、varchar 等。一直没详细介绍过 blob 及 text 类型,虽然这两类数据类型不太常用,但在某些场景下还是会用到的。本篇文章将主要介绍 blob 及 text 数据类型的相关知识。

1. blob 类型

blob(binary large object) 是一个可以存储二进制文件的容器,主要用于存储二进制大对象,例如可以存储图片,音视频等文件。按照可存储容量大小不同来分类,blob 类型可分为以下四种:

类型可存储大小用途
TINYBLOB0 - 255字节短文本二进制字符串
BLOB0 - 65KB二进制字符串
MEDIUMBLOB0 - 16MB二进制形式的长文本数据
LONGBLOB0 - 4GB二进制形式的极大文本数据

其中最常用的就是 blob 字段类型了,最多可存储 65KB 大小的数据,一般可用于存储图标或 logo 图片。不过数据库并不适合直接存储图片,如果有大量存储图片的需求,请使用对象存储或文件存储,数据库中可以存储图片路径来调用。

2. text 类型

text 类型同 char、varchar 类似,都可用于存储字符串,一般情况下,遇到存储长文本字符串的需求时可以考虑使用 text 类型。按照可存储大小区分,text 类型同样可分为以下四种:

类型可存储大小用途
TINYTEXT0 - 255字节一般文本字符串
TEXT0 - 65 535字节长文本字符串
MEDIUMTEXT0 - 16 772 150字节较大文本数据
LONGTEXT0 - 4 294 967 295字节极大文本数据

不过在日常场景中,存储字符串还是尽量用 varchar ,只有要存储长文本数据时,可以使用 text 类型。对比 varchar ,text 类型有以下特点:

  • text 类型无须指定长度。
  • 若数据库未启用严格的 sqlmode ,当插入的值超过 text 列的最大长度时,则该值会被截断插入并生成警告。
  • text 类型字段不能有默认值。
  • varchar 可直接创建索引,text 字段创建索引要指定前多少个字符。
  • text 类型检索效率比 varchar 要低。

下面我们来具体测试下 text 类型的使用方法:

  1. # 创建测试表 字符集是 utf8
  2. mysql> show create table tb_text\G
  3. *************************** 1. row ***************************
  4. Table: tb_text
  5. Create Table: CREATE TABLE `tb_text` (
  6. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  7. `a` tinytext,
  8. `b` text,
  9. `c` varchar(255) DEFAULT NULL,
  10. PRIMARY KEY (`id`)
  11. ) ENGINE=InnoDB DEFAULT CHARSET=utf8
  12. # 创建索引测试 发现text类型必须指定前缀长度
  13. mysql> alter table tb_text add index idx_a (a);
  14. ERROR 1170 (42000): BLOB/TEXT column 'a' used in key specification without a key length
  15. mysql> alter table tb_text add index idx_b (b);
  16. ERROR 1170 (42000): BLOB/TEXT column 'b' used in key specification without a key length
  17. mysql> alter table tb_text add index idx_c (c);
  18. Query OK, 0 rows affected (0.04 sec)
  19. Records: 0 Duplicates: 0 Warnings: 0
  20. mysql> alter table tb_text add index idx_b (b(10));
  21. Query OK, 0 rows affected (0.06 sec)
  22. Records: 0 Duplicates: 0 Warnings: 0
  23. # 插入数据测试(repeat函数用于生成重复数据)
  24. # 正常插入
  25. mysql> insert into tb_text (a,b,c) values (repeat('hello',3),repeat('hello',3),repeat('hello',3));
  26. Query OK, 1 row affected (0.01 sec)
  27. # 插入英文字符超标
  28. mysql> insert into tb_text (a) values (repeat('hello',52));
  29. Query OK, 1 row affected, 1 warning (0.01 sec)
  30. mysql> show warnings;
  31. +---------+------+----------------------------------------+
  32. | Level | Code | Message |
  33. +---------+------+----------------------------------------+
  34. | Warning | 1265 | Data truncated for column 'a' at row 1 |
  35. +---------+------+----------------------------------------+
  36. 1 row in set (0.00 sec)
  37. # 插入中文超标
  38. mysql> insert into tb_text (a) values (repeat('你好',100));
  39. Query OK, 1 row affected, 1 warning (0.02 sec)
  40. mysql> show warnings;
  41. +---------+------+----------------------------------------+
  42. | Level | Code | Message |
  43. +---------+------+----------------------------------------+
  44. | Warning | 1265 | Data truncated for column 'a' at row 1 |
  45. +---------+------+----------------------------------------+
  46. 1 row in set (0.00 sec)
  47. # 查看数据 发现数据有所截取 tinytext 类型最多存储255字节数据
  48. mysql> select * from tb_text;
  49. +----+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------+-----------------+
  50. | id | a | b | c |
  51. +----+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------+-----------------+
  52. | 1 | hellohellohello | hellohellohello | hellohellohello |
  53. | 2 | hellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohello | NULL | NULL |
  54. | 3 | 你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你好你 | NULL | NULL |
  55. +----+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------+-----------------+
  56. 3 rows in set (0.00 sec)

通过以上测试,我们注意到,text 类型可存储容量是以字节为单位而不是字符。例如 tinytext 最多存储 255 个字节而不是 255 个字符,在 utf8 字符集下,一个英文字母或数字占用一个字节,而一个中文汉字占用三个字节。也就是说 tinytext 最多存储 255/3=85 个汉字,text 最多存储 65535/3=21845 个汉字。而 varchar(M) 中的 M 指的是字符数,一个英文、数字、汉字都是占用一个字符,即 tinytext 可存储的大小并不比 varchar(255) 多。

总结:

本篇文章介绍了 blob 及 text 字段类型相关知识。虽然数据库规范中一般不推荐使用 blob 及 text 类型,但由于一些历史遗留问题或是某些场景下,还是会用到这两类数据类型的。这篇文章仅当做个记录了,使用到的时候可以参考下。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/904413
推荐阅读
相关标签
  

闽ICP备14008679号