Re: [SQL] Problems with default date 'now'

Поиск
Список
Период
Сортировка
От Jose' Soares Da Silva
Тема Re: [SQL] Problems with default date 'now'
Дата
Msg-id Pine.LNX.3.96.980610124928.3640A-100000@proxy.bazzanese.com
обсуждение исходный текст
Ответ на Problems with default date 'now'  (Petter Reinholdtsen <pere@td.org.uit.no>)
Список pgsql-sql
On Tue, 9 Jun 1998, Petter Reinholdtsen wrote:

>
> I have a table where I want the default value of a date field to be
> todays date when I do insert.  I have this table definition:
>
> CREATE TABLE testdate(
>     received date DEFAULT 'now',
>     info text NOT NULL
>     );
>

CREATE TABLE testdate(
     received date DEFAULT CURRENT_DATE,
     info text NOT NULL
     );

> The problem is that the 'now' apparently is substituted when I create
> the table, not when I insert into it.  Is there another way to handle
> this?  This is on Linux RedHat 5.0 with PostgreSQL 6.2.1.
>
                    Jose'


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

Предыдущее
От: Philippe LEWEST
Дата:
Сообщение: Creation of a class of tables
Следующее
От: Petter Reinholdtsen
Дата:
Сообщение: Re: [SQL] Problems with default date 'now'