MySQL TEXT

MySQL doesn’t have a native CLOB (Character Large Object) data type exactly like some other databases such as Oracle. MySQL offers the TEXT family of data types, which can be considered similar to CLOB. The LONGTEXT type can store up to 4GB of text data. Detailed overview of TEXT data type ... Read more

MySQL BLOB

In MySQL, the BLOB (Binary Large Object) data types are used to store large amounts of binary data, such as images, audio, and video files. MySQL provides four different BLOB data types, each with different maximum storage capacities: TINYBLOB: Can store up to 255 bytes of binary data. BLOB: Can ... Read more