I'm a little confused and could do with some guidance.

I want two fields to store an excerpt with a max size of 500 characters, and another to store a description with a max size of 10,000.

What data types should I use, TEXT or VARCHAR? And why? After MySQL 5.0.3 VARCHAR accepts ~65000 characters. But this does not tell why I should use one type and or the other, and why...

I'm reasoning that I should use VARCHAR for the excerpt because I can assign a size limit, and TEXT for the description field since it's larger.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

A long VARCHAR is stored in the same manner as a TEXT/BLOB field in InnoDB (which I assume you're using for transactionality, referential integrity and crash recovery, right?) - that is, externally to the rest of the table on disk (which may require another disk read to retrieve).

From storage prospective BLOB, TEXT as well as long VARCHAR are handled same way by Innodb. This is why Innodb manual calls it “long columns” rather than BLOBs.

source

Unless you need to index these columns (in which case VARCHAR is much faster) there is no reason to use VARCHAR over TEXT for long fields - there are some engine specific optimisations in MySQL to tune the data retrieval according to length, and you should use the correct column type to take advantage of these.

In case you're using MyISAM an in-depth discussion on the topic is here.

link|improve this answer
@Andy, this is interesting because according to idstam, above, you can do full text indexing on VARCHAR. He cited this article, which I'm yet to read: devarticles.com/c/a/MySQL/… – Mohamad Jun 19 '11 at 19:43
Fulltext supported on both column types for MyISAM anyway: Full-text indexes can be used only with MyISAM tables, and can be created only for CHAR, VARCHAR, or TEXT columns. dev.mysql.com/doc/refman/5.0/en/fulltext-search.html – Andy Jun 19 '11 at 19:46
@Andy, thanks. I had no idea. So if I wanted to use a Full-text index to allow my users to search description fields, I have to convert my table to MyISAM? Also, if I understood you correctly, LONG VARCHAR, or above 255 characters, is going to behave the same way as TEXT and BLOB? – Mohamad Jun 19 '11 at 19:53
1  
Table conversion has its own disadvantages. Normalising the description field to its own MyISAM table and joining on it will allow simultaneous use of the robust features of InnoDB and the single desirable feature of MyISAM :) – Andy Jun 19 '11 at 19:56
@Andy, interesting approach. So much to think about. Everything was really simple until about a15 minutes ago! :) Thank you! – Mohamad Jun 19 '11 at 20:00
show 1 more comment
feedback

If your content fits in a varchar column then use varchar.

Varchar data is stored in each row. Text data is stored as blobs outside of the table.

According to this test, varchar is about three times faster than text.

link|improve this answer
interesting, thank you for that. Can VARCHAR columns be full-text indexed for search purposes? – Mohamad Jun 19 '11 at 19:36
1  
Yes, according to this: devarticles.com/c/a/MySQL/… – idstam Jun 19 '11 at 19:39
feedback

Your Answer

 
or
required, but never shown

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