varchar(255) v tinyblob v tinytext - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T14:26:12Zhttp://stackoverflow.com/feeds/question/143933http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143933/varchar255-v-tinyblob-v-tinytext3varchar(255) v tinyblob v tinytextHumpton2008-09-27T16:20:01Z2008-09-27T18:20:06Z
<p>My side question is there really any difference between tinyblob & 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#1439434Answer by sethbc for varchar(255) v tinyblob v tinytextsethbc2008-09-27T16:27:54Z2008-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 < 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#1439442Answer by Steve K for varchar(255) v tinyblob v tinytextSteve K2008-09-27T16:28:31Z2008-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>