Re: Inserts with incomplete rows... NOT NULL constraints

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: Inserts with incomplete rows... NOT NULL constraints
Дата
Msg-id 411A2057.60109@archonet.com
обсуждение исходный текст
Ответ на Inserts with incomplete rows... NOT NULL constraints  (Lars Erik Thorsplass <thorsplass@gmail.com>)
Список pgsql-sql
Lars Erik Thorsplass wrote:
> The problem am now facing is that postgres will try to insert a NULL
> value for fields not specified in the insert query and that are
> defined as NOT NULL in the table structure. Is this the correct
> behaviour?

Actually, what it's doing is inserting the DEFAULT value for the field 
in question. If you don't specify a DEFAULT, it assumes null.

# CREATE TABLE test_tbl (a integer, b text DEFAULT 'bbb', c text);
# INSERT INTO test_tbl (a) VALUES (1);
# SELECT * FROM test_tbl; a |  b  | c
---+-----+--- 1 | bbb |

If you specify NOT NULL and don't want to provide a value you'll need to 
set a DEFAULT.

--   Richard Huxton  Archonet Ltd


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: Inserts with incomplete rows... NOT NULL constraints
Следующее
От: David Garamond
Дата:
Сообщение: Displaying two tables side by side