I have a small social networking website, with posts and comments.
I decided to let users create posts with any number of charس they want, and I think the best Datatype for storing such things is Text.
But for comments, in most cases users write only one or a few lines of text. That's why I think that I have to limit comment string length to something like 3000 or even 6000 chars maximum.
So, what Datatype should I use for my comments ?
Varchar or Text?
There are various places where VARCHAR
and TEXT
do or do not differ. Some things I say:
TEXT
.TINYTEXT
-- it has only negatives relative to VARCHAR(255)
.VARCHAR(255)
; pick a reasonable max instead of 255. (This is a minor optimization relating to temp table in complex queries.)CHAR
only for things that are truly fixed length. In almost all such case, tack on CHARACTER SET ascii
(or latin1). (Else it will take more space than you expect.CHARACTER SET ut8mb4
. (Exceptions are becoming more an more rare.)(Sorry, I digress. Back on topic...)
I indexing, in layout of InnoDB rows (there are 4 different ROW_FORMATs
), etc, VARCHAR(513)
will be essentially indistinguishable from TEXT
.
One of the few arguments for VARCHAR
is that it limits the store to the length given. But how often is that important?