
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 BLOB column in MySQL?
As we know that BLOB is a binary large object that can hold a variable amount of data. The different TEXT objects offer a range of storage space from 255 bytes to 4 Gb. Following table shows the storage of different kinds of BLOB data type −
Type of BLOB | Maximum amount of Data that can be stored | Overhead |
TINYBLOB | Up to 255 bytes | 1 byte |
BLOB | Up to 64 Kb | 2 bytes |
MEDIUMBLOB | Up to 16 Mb | 3 bytes |
LONGBLOB | Up to 4 Gb | 1 Bytes |
- Related Questions & Answers
- What is the maximum length of data we can put in a TEXT column in MySQL?
- What is the maximum length of MySQL VARCHAR column?
- What is BLOB data type in MySQL?
- How can we put comments in a column of existing MySQL table?
- What is the maximum length of a table name in MySQL?
- MySQL query to fetch column length declared with BLOB type
- What is the maximum length of each type of identifier in MySQL?
- How can we change the data type of the column in MySQL table?
- How can we retrieve the length of a specified string in MySQL?
- What is the maximum length of string in Python?
- How can we amend the declared size of a column’s data type in MySQL?
- How can we put schedule for different kinds of MySQL events?
- Can we GROUP BY one column and select all data in MySQL?
- What is the maximum file size we can open using Python?
- Maximum Column name length in SAP HANA
Advertisements