"mysql, which is more efficient longtext, text, or blob? improving insert efficiency" Code Answer

5

the various text/blob types are all identical in storage requirements in php, and perform exactly the same way, except text fields are subject to character set conversion. blob fields are not. in other words, blobs are for when you're storing binary that must come out exactly the same as it went in. text fields are for storing text data that may/can/will be converted from one charset to another.

By trojanfoe on July 3 2022

Answers related to “mysql, which is more efficient longtext, text, or blob? improving insert efficiency”

Only authorized users can answer the Search term. Please sign in first, or register a free account.