
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the maximum length of data we can put in a TEXT column in MySQL?
As we know TEXT data objects are useful for storing long-form text strings. The different TEXT objects offer a range of storage space from 255 bytes to 4 Gb. The following table shows the storage of different kinds of TEXT data type −
Type of BLOB |
Maximum amount of Data that can be stored |
Overhead |
TINYTEXT |
Up to 255 bytes |
1 byte |
TEXT |
Up to 64 Kb |
2 bytes |
MEDIUMTEXT |
Up to 16 Mb |
3 bytes |
LONGTEXT |
Up to 4 Gb |
4 bytes |
Advertisements