Re: Using Insert - Default in a condition expression ??

Поиск
Список
Период
Сортировка
От Sim Zacks
Тема Re: Using Insert - Default in a condition expression ??
Дата
Msg-id 4AC1ACC8.6090606@compulab.co.il
обсуждение исходный текст
Ответ на Using Insert - Default in a condition expression ??  (Postgres User <postgres.developer@gmail.com>)
Ответы Re: Using Insert - Default in a condition expression ??  ("A. Kretschmer" <andreas.kretschmer@schollglas.com>)
Список pgsql-general
>
> I'm trying to write an INSERT INTO statement that will use a DEFAULT
> value when an input parameter is null.
>
Neither of my 2 methods are pretty.
1) Use a trigger.
2) Grab and cast the default value from the information_schema.columns
view and plug it in.

Another option is to build your insert sql as a string and then execute it.

Sim

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

Предыдущее
От: Postgres User
Дата:
Сообщение: Using Insert - Default in a condition expression ??
Следующее
От: Postgres User
Дата:
Сообщение: Re: Using Insert - Default in a condition expression ??