InterviewSolution
Saved Bookmarks
| 1. |
What is BLOB in MySQL? |
|
Answer» BLOB is an acronym that stands for a BINARY large object. It is used to hold a VARIABLE amount of data.
A BLOB can hold a very large amount of data. For example - documents, IMAGES, and even videos. You could store your complete novel as a file in a BLOB if needed. |
|