MYSQL: Difference between Binary and Blob

后端 未结 2 1139
刺人心
刺人心 2021-01-07 18:24

I\'m trying to understand mysql data types, but i don\'t get the difference between the (Var-)BINARY data fields and the BLOB-Fields. What ist the difference between these t

2条回答
  •  醉话见心
    2021-01-07 19:00

    The binary and varbinary types are binary strings whose actual values are stored in the table. The actual values blob (and text) types are stored elsewhere in the database with a 256 byte alias to that slot being placed in the table; the blob can therefore be "any" size (up to the max).

提交回复
热议问题