What is difference between storing data in a blob, vs. storing a pointer to a file?
I read that the data type can be used to store files. According to MySQL manual page on Blob, A BLOB is a binary large object that can hold a variable amount of data. Since it’s a data type specific to store binary data it’s common to use it to store files in binary format, … Read more