Re: Inserting NULL into Integer column

Поиск
Список
Период
Сортировка
От scott.marlowe
Тема Re: Inserting NULL into Integer column
Дата
Msg-id Pine.LNX.4.33.0402181239030.2832-100000@css120.ihs.com
обсуждение исходный текст
Ответ на Inserting NULL into Integer column  ("Jeremy Smith" <jer@highboard.com>)
Ответы Re: Inserting NULL into Integer column  ("Jeremy Smith" <jer@highboard.com>)
Список pgsql-sql
On Wed, 18 Feb 2004, Jeremy Smith wrote:

> Hi,
> 
> in mysql I was able to make an insert such as:
> 
> INSERT INTO TABLE (integervariable) VALUES ('')
> 
> and have it either insert that variable, or insert the default if it had
> been assigned.  In postgresql it gives and error every time that this is
> attempted.  Since I have so many queries that do this on my site already, is
> there any way to set up a table so that it just accepts this sort of query?

First off, the reason for this problem is that Postgresql adheres to the 
SQL standard while MySQL heads off on their own, making it up as they go 
along.  This causes many problems for people migrating from MySQL to 
almost ANY database.

Phew, now that that's out of the way, here's the standard ways of doing 
it.

Use DEFAULT:  If no default is it will insert a NULL, otherwise the 
default will be inserted:
insert into table (integervar) values (DEFAULT);  

OR

Leave it out of the list of vars to be inserted
insert into table (othervars, othervars2) values ('abc',123);

OR

Insert a NULL if that's what you want:

insert into table (integervar) values (NULL);

Note that NULL and DEFAULT are not quoted.



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

Предыдущее
От: "Jeremy Smith"
Дата:
Сообщение: Inserting NULL into Integer column
Следующее
От: elein
Дата:
Сообщение: Re: CHAR(n) always trims trailing spaces in 7.4