varchar(255) v tinyblob v tinytext - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:26:12Z http://stackoverflow.com/feeds/question/143933 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/143933/varchar255-v-tinyblob-v-tinytext 3 varchar(255) v tinyblob v tinytext Humpton 2008-09-27T16:20:01Z 2008-09-27T18:20:06Z <p>My side question is there really any difference between tinyblob &amp; tinytext? </p> <p>Buy my real question is what reason, if any, would I choose varchar(255) over tinyblob or tinytext? </p> http://stackoverflow.com/questions/143933/varchar255-v-tinyblob-v-tinytext/143943#143943 4 Answer by sethbc for varchar(255) v tinyblob v tinytext sethbc 2008-09-27T16:27:54Z 2008-09-27T16:27:54Z <p>Primarily <a href="http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html" rel="nofollow">storage requirements</a> and memory handling/speed:</p> <blockquote> <p>VARCHAR(M), VARBINARY(M) - L + 1 bytes if column values require 0 – 255 bytes, L + 2 bytes if values may require more than 255 bytes </p> <p>TINYBLOB, TINYTEXT - L + 1 bytes, where L &lt; 28</p> </blockquote> <p>Additionally, see <a href="http://markmail.org/message/u5rl7bhx64jsom2l" rel="nofollow">this</a> post:</p> <blockquote> <p>For each table in use, MySQL allocates memory for 4 rows. For each of these rows CHAR(X)/VARCHAR(X) column takes up the X characters.</p> <p>A TEXT/BLOB on the other hand is represented by a 8 byte pointer + a 1-4 byte length (depending on the BLOB/TEXT type). The BLOB/TEXT is allocated dynamicly on use. This will use less memory, but in some cases it may fragment your memory in the long run.</p> </blockquote> <p><strong>Edit</strong>: As an aside, blobs store binary data and text stores ASCII, thats the only difference between TINYBLOB and TINYTEXT.</p> http://stackoverflow.com/questions/143933/varchar255-v-tinyblob-v-tinytext/143944#143944 2 Answer by Steve K for varchar(255) v tinyblob v tinytext Steve K 2008-09-27T16:28:31Z 2008-09-27T16:28:31Z <p>VARCHAR(255) is more SQL standard than tinyblob or tinytext. So your script, and application would be more portable across database vendors.</p>