MySQL TEXT vs BLOB vs CLOB(MySQL 文本与 BLOB 与 CLOB)
问题描述
从性能和可用性的角度来看,这些不同的数据类型有什么区别、优点和缺点?
What are the differences, advantages and disadvantages of these different data-types both from a performance standpoint as well as a usability standpoint?
推荐答案
TEXT 是一种基于文本输入的数据类型.另一方面,BLOB 和 CLOB 更适合数据存储(图像等),因为它们具有更大的容量限制(例如 4GB).
TEXT is a data-type for text based input. On the other hand, you have BLOB and CLOB which are more suitable for data storage (images, etc) due to their larger capacity limits (4GB for example).
至于 BLOB 和 CLOB 的区别,我相信 CLOB 有与之相关的字符编码,这意味着它可以很好地适应非常大量的文本.
As for the difference between BLOB and CLOB, I believe CLOB has character encoding associated with it, which implies it can be suited well for very large amounts of text.
BLOB 和 CLOB 数据可能需要很长时间才能检索到,这与检索 TEXT 字段中的数据的速度有关.所以,只使用你需要的东西.
BLOB and CLOB data can take a long time to retrieve, relative to how quick data from a TEXT field can be retrieved. So, use only what you need.
这篇关于MySQL 文本与 BLOB 与 CLOB的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL 文本与 BLOB 与 CLOB
基础教程推荐
- SQL Server 2016更改对象所有者 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01