Re: insert into: NULL in date column

Поиск
Список
Период
Сортировка
От Rob Sargent
Тема Re: insert into: NULL in date column
Дата
Msg-id 410b055a-24a7-5e15-f4e6-462e64794530@gmail.com
обсуждение исходный текст
Ответ на insert into: NULL in date column  (Rich Shepard <rshepard@appl-ecosys.com>)
Ответы Re: insert into: NULL in date column  (Rich Shepard <rshepard@appl-ecosys.com>)
Список pgsql-general
On 1/11/19 3:56 PM, Rich Shepard wrote:
> A table has this column definition:
>
> next_contact date DEFAULT '2020-11-06'
>                CONSTRAINT valid_next_date
>                CHECK (next_contact >= CURRENT_DATE),
>
> (and I don't know that it needs a default).
>
> In an input statement that column is left empty ('') when there's no 
> defined
> date. When I try to input that table I get a format error:
>
> psql:activities.sql:2: ERROR:  invalid input syntax for type date: ""
> LINE 2: ...reaction they''ve experienced environmental issues.','','');
>                                                                 ^
> and my web research has not shown me my error. Removing the check 
> constraint
> does not eliminate that error.
>
> Please show me what I've done incorrectly.
>
> TIA,
>
> Rich
>

Miss-matched single quotes in activities.sql?



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

Предыдущее
От: Rich Shepard
Дата:
Сообщение: insert into: NULL in date column
Следующее
От: Rich Shepard
Дата:
Сообщение: Re: insert into: NULL in date column