Re: Data Types

Поиск
Список
Период
Сортировка
От Roberts, Jon
Тема Re: Data Types
Дата
Msg-id 1A6E6D554222284AB25ABE3229A92762E9A584@nrtexcus702.int.asurion.com
обсуждение исходный текст
Ответ на Data Types  ("Mike Gould" <mgould@allcoast.net>)
Ответы Re: Data Types  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general

Character will use more disk space than varchar so it does make a difference.

 

http://www.postgresql.org/docs/8.3/interactive/datatype-character.html

 

Values of type character are physically padded with spaces to the specified width n, and are stored and displayed that way. However, the padding spaces are treated as semantically insignificant. Trailing spaces are disregarded when comparing two values of type character, and they will be removed when converting a character value to one of the other string types. Note that trailing spaces are semantically significant in character varying and text values.

 

 

 

 

Jon

 


From: pgsql-general-owner@postgresql.org [mailto:pgsql-general-owner@postgresql.org] On Behalf Of Mike Gould
Sent: Monday, June 23, 2008 1:01 PM
To: pgsql-general General
Subject: [GENERAL] Data Types

 

We are converting our system from using Sybase's SQL Anywhere 10 to PostGres 8.3.  In SQL Anywhere there technically isn't any difference in how a char and varchar is stored. They are all an array of char[1]. So we always just defined everything as a char since right truncation is the default.

In PostGres though if we are using a character type column to search should we define that as a varchar or a char or does it make any difference?

Best Regards

Michael Gould
Intermodal Software Solutions, LLC.

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

Предыдущее
От: "Reynolds, Gregory A"
Дата:
Сообщение: dbsize command
Следующее
От: Greg Smith
Дата:
Сообщение: Re: dbsize command