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

What's the difference between the text data type and the character varying (varchar) Data types?

According to the documentation,

If character varying is used without length specifier, the type accepts strings of any size. The latter is a PostgreSQL extension.

And

In addition, PostgreSQL provides the text type, which stores strings of any length. Although the type text is not in the SQL standard, several other SQL database management systems have it as well.

So what's the difference?

share|improve this question

3 Answers

up vote 52 down vote accepted

There is no difference, under the hood it's all varlena.

Check this article from Depesz: http://www.depesz.com/index.php/2010/03/02/charx-vs-varcharx-vs-varchar-vs-text/

share|improve this answer

As the manual points out, varchar(n), char(n), and text are all stored the same way. The only difference is extra cycles to check the length, if one is given, and extra space and time if padding is needed for char(n).

However, when you only need to store a single character, there is a slight performance advantage to using the special type "char" (keep the double-quotes — they're part of the type name). You get faster access to the field, and there no overhead to store the length.

I just made a table of 1,000,000 random "char" chosen from the lower-case alphabet. A query to get a frequency distribution (select count(*), field ... group by field) takes about 650 milliseconds, vs about 760 on the same data using a text field.

share|improve this answer

Traditionally VARCHAR is the only supported string type in SQL, and you have to specifiy a maximum length. That way the DBMS can use fixed-size rows in its storage.

Modern DBMS allow for the use of external references that store the data separately from the rows. The TEXT type is such a case, and thus it allows for arbitrary strings with no preset length limit.

Using VARCHAR without length is just syntactic sugar for TEXT - there should be no difference. On the other hand, in some cases, such as SQLite, VARCHAR may in fact be implicitly converted to TEXT.

Typically, there is a performance hit associated with using TEXT instead of VARCHAR with a maximum length - the DBMS has to access two locations instead of just the current data row in order to retrieve the string that is contained in the TEXT field. This implies additional hard drive seeks and CPU operations, although this hit is rather minimal in modern systems where the DMBS is designed to handle this and complex queries are the major high load cause.

share|improve this answer
5  
Regarding the performance difference - according to the docs there shouldn't be any. – Milen A. Radev Jan 31 '11 at 8:55
2  
TEXT and VARCHAR with a maximum length, are two different things, the second has a constraint that has to be checked. TEXT and VARCHAR are the same in PostgreSQL, these don't have a lenght constraint. – Frank Heikens Jan 31 '11 at 8:57

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.