mysqlsqldatatypes

Varchar or Text Data Types for strings length up to few thousands of chars


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?


Solution

  • There are various places where VARCHAR and TEXT do or do not differ. Some things I say:

    (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?