Re: column type varchar(128) not null default '' vs varchar(128)

Поиск
Список
Период
Сортировка
От Dann Corbit
Тема Re: column type varchar(128) not null default '' vs varchar(128)
Дата
Msg-id D425483C2C5C9F49B5B7A41F8944154757D5EA@postal.corporate.connx.com
обсуждение исходный текст
Список pgsql-general
> -----Original Message-----
> From: pgsql-general-owner@postgresql.org [mailto:pgsql-general-
> owner@postgresql.org] On Behalf Of Emi Lu
> Sent: Wednesday, March 08, 2006 2:52 PM
> To: pgsql-general@postgresql.org
> Subject: [GENERAL] column type varchar(128) not null default '' vs
> varchar(128)
>
> Hello,
>
> When setuping column types, is there the big efficiency difference
> between the following two examples?
>
> col  varchar(128) NOT NULL default ''
>         vs.
> col  varchar(128)

The difference has nothing to do with efficiency and everything to do
with what goes into them.

The first example does not allow col to be NULL.  If you insert a row
and do not insert any data into column col, col will get a value of ''
(empty) which is not the same thing as NULL.

The second example does not have a default and allows NULL values.  So
if you insert data into the table in the second example, and you do not
provide data for column col, then col will be NULL.

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

Предыдущее
От: Emi Lu
Дата:
Сообщение: column type varchar(128) not null default '' vs varchar(128)
Следующее
От: Steve Atkins
Дата:
Сообщение: Re: Fixing up a corrupted toast table