Re: [SQL] Problems with default date 'now' - Mailing list pgsql-sql

From Jose' Soares Da Silva
Subject Re: [SQL] Problems with default date 'now'
Date
Msg-id Pine.LNX.3.96.980610124928.3640A-100000@proxy.bazzanese.com
Whole thread Raw
In response to Problems with default date 'now'  (Petter Reinholdtsen <pere@td.org.uit.no>)
List 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 by date:

Previous
From: Philippe LEWEST
Date:
Subject: Creation of a class of tables
Next
From: Petter Reinholdtsen
Date:
Subject: Re: [SQL] Problems with default date 'now'