Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a messages table in MySQL which records messages between users. Apart from the typical ids and message types (all integer types) I need to save the actual message text as either VARCHAR or TEXT. I'm setting a front-end limit of 3000 characters which means the messages would never be inserted into the db as longer than this.

Is there a rationale for going with either VARCHAR(3000) or TEXT? There's something about just writing VARCHAR(3000) that feels somewhat counter-intuitive. I've been through other similar posts on Stack Overflow but would be good to get views specific to this type of common message storing.

Any help would be appreciated. Thanks.

share|improve this question

4 Answers

up vote 189 down vote accepted

TEXT and BLOB is stored off the table with the table just having a pointer to the location of the actual storage.

VARCHAR is stored inline with the table. VARCHAR is faster when the size is reasonable, the tradeoff of which would be faster depends upon your data and your hardware, you'd want to benchmark a realworld scenario with your data.

share|improve this answer
1  
+1: Good explanation. – James Jan 7 '10 at 21:42
22  
+1: VARCHAR (stored inline) is usually faster IF the data is frequently retrieved (included by most queries). However, for a large volume of data that is not normally retrieved (that is, not referenced by any query), then it may be better to not have the data stored inline. There is an upper limit on the row size, for data stored inline. – spencer7593 Jan 14 '11 at 17:54
8  
Can you include any source? Where have you read it? Thanks. – santiagobasulto Oct 4 '11 at 19:56
2  
@MindStalker Is this always true 2 years later? I vaguely remember reading that TEXT can be inlined as well if they are small.. ? – Øyvind Skaar Mar 16 '12 at 13:25

Just to clarify the best practice:

1) Text format messages should almost always be stored as TEXT (they end up being arbitrarily long)

2) String attributes should be stored as VARCHAR (the destination user name, the subject, etc...).

I understand that you've got a front end limit, which is great until it isn't. *grin* The trick is to think of the DB as separate from the applications that connect to it. Just because one application puts a limit on the data, doesn't mean that the data is intrinsically limited.

What is it about the messages themselves that forces them to never be more then 3000 characters? If it's just an arbitrary application constraint (say, for a text box or something), use a TEXT field at the data layer.

share|improve this answer
Thanks, that's very useful. – Tom Jan 7 '10 at 22:32

Disclaimer: I'm not a MySQL expert ... but this is my understanding of the issues.

I think TEXT is stored outside the mysql row, while I think VARCHAR is stored as part of the row. There is a maximum row length for mysql rows .. so you can limit how much other data you can store in a row by using the VARCHAR.

Also due to VARCHAR forming part of the row, I suspect that queries looking at that field will be slightly faster than those using a TEXT chunk.

share|improve this answer
17  
The row length limit is 65,535 bytes [ dev.mysql.com/doc/refman/5.0/en/column-count-limit.html ]. If your column is utf8-encoded, that means a 3000-character varchar column can take up to 9000 bytes. – Jan Fabry Jan 7 '10 at 21:05
Thanks for the utf8 clarification. – Tom Jan 7 '10 at 21:32
4  
UTF-8 characters can be up to 4 bytes, so I think you meant 12,000 bytes (unless there is some MySQL thing I'm not understanding here). – raylu Jul 10 '11 at 3:15
4  
@raylu MySQL's UTF-8 is "fake UTF-8" in that it only supports 3 bytes per character max, so there is no way to directly store unicode characters beyond BMP plane in MySQL's UTF-8. This is fixed in MySQL 5.5. – Pacerier Jul 6 '12 at 5:28

Can you predict how long the user input would be? user name, email, country, subject, password

VARCHAR(X)

If not: messages, emails, comments, formatted text, html, code, images, links

TEXT

share|improve this answer
Predictability is really a side item here. It's actually maximum expected length that should be the deciding factor. The items you mention as more predictable are only that way because they are shorter than the others. – Andrew Barber Nov 1 '12 at 19:46
1  
@andrew-barber That's my point though. All the other posts explain well about the differences but not about the situations when you actually have to make a choice between the two. I was trying to point out using varchar for predictably short is a good choice and using text for arbitrarily long is a good choice. – Michael Calkins Nov 1 '12 at 20:28
If all the columns are short and predictable (ex: MAC address, IMEI, etc... are things that never change) then use CHAR columns and you can make your row size fixed, which should speed things up considerably if using MyISAM, possibly also InnoDb although I am not sure about it. – Matt Apr 2 at 19:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.