Re:

Поиск
Список
Период
Сортировка
От Andrew Sullivan
Тема Re:
Дата
Msg-id 20030211082927.C15541@mail.libertyrms.com
обсуждение исходный текст
Ответ на ...  (jeandre@itvs.co.za)
Список pgsql-performance
On Tue, Feb 11, 2003 at 01:10:12PM +0200, jeandre@itvs.co.za wrote:
> When defining data types, which is better text, varchar or char? I heard
> that on Postgres text is better, but I know on Sybase char is more efficient.
> Can someone please tell me whether this statement is true and if so why?

Avoid char(n) unless you absolutely know you have a constant-length
field.  Even then, you may get surprises.

For practical purposes, text is probably your best bet.  For
compatibility, there is varchar(), which is the same thing as text.
If you need to limit the size, use varchar(n).  Be aware that it is
slightly slower, so don't use it unless your model demands it.

A

--
----
Andrew Sullivan                         204-4141 Yonge Street
Liberty RMS                           Toronto, Ontario Canada
<andrew@libertyrms.info>                              M2P 2A8
                                         +1 416 646 3304 x110


В списке pgsql-performance по дате отправления:

Предыдущее
От: jeandre@itvs.co.za
Дата:
Сообщение: ...
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: how to configure my new server