Classic Jhumka Earrings Silver INR 113.00 Free Shipping Buy Now
Black Jhumka Earrings & Studs INR 94.00 Free Shipping Buy Now
Classic Jhumka Earrings Silver INR 207.00 Free Shipping Buy Now
Beautiful stud earing INR 93.00 Free Shipping Buy Now
Different Size Hoop and Stud Earrings Set INR 243.00 Free Shipping Buy Now
Golden Hoop Earing INR 70.00 Free Shipping Buy Now
Home Questions & Answers Technology MySQL Question Answers What is BLOB and TEXT in MySQL?

    What is BLOB and TEXT in MySQL?

  • BLOB is an acronym stands for binary large object. It is used to hold a variable amount of data.

    There are four types of BLOB.

    1. TINYBLOB
    2. BLOB
    3. MEDIUMBLOB
    4. LONGBLOB

    The differences among all these are the maximum length of values they can hold.

    TEXT is case-insensitive BLOB. TEXT values are non-binary strings (character string). They have a character set and values are stored and compared based on the collation of the character set.

    There are four types of TEXT.

    1. TINYTEXT
    2. TEXT
    3. MEDIUMTEXT
    4. LONGTEXT
  • Explanation:

    BLOB is an acronym stands for binary large object. It is used to hold a variable amount of data.

    There are four types of BLOB.

    1. TINYBLOB
    2. BLOB
    3. MEDIUMBLOB
    4. LONGBLOB

    The differences among all these are the maximum length of values they can hold.

    TEXT is case-insensitive BLOB. TEXT values are non-binary strings (character string). They have a character set and values are stored and compared based on the collation of the character set.

    There are four types of TEXT.

    1. TINYTEXT
    2. TEXT
    3. MEDIUMTEXT
    4. LONGTEXT