Re: example of insert timestamp - Mailing list pgsql-admin

From Aaron Bono
Subject Re: example of insert timestamp
Date
Msg-id bf05e51c0802251721h48fa1d12i1993459170c805fe@mail.gmail.com
Whole thread Raw
In response to example of insert timestamp  (David Bear <david.bear@asu.edu>)
List pgsql-admin
On Mon, Feb 25, 2008 at 7:21 PM, David Bear <david.bear@asu.edu> wrote:
I've been reading about triggers on insert and found the page at
http://www.postgresql.org/docs/8.1/interactive/triggers.html with some sample
code in the comments.

I'm thinking what I want can't really be this involved.

I want to have a table with a timestamp field that automatically gets the
value of now() on insert. The timestamp will never be updated. I assume I
need to create a trigger to do this. If there is an easier way, please
advise.

Otherwise, is there any sample code that would should be how to do this? The
sample on the page above looks like overkill.

In your create table statement:

"create_dt" TIMESTAMP WITHOUT TIME ZONE DEFAULT now() NOT NULL

--
==================================================================
  Aaron Bono
  Aranya Software Technologies, Inc.
  http://www.aranya.com
  http://codeelixir.com
==================================================================

pgsql-admin by date:

Previous
From: Jamie A Lawrence
Date:
Subject: Re: example of insert timestamp
Next
From: "Aaron Bono"
Date:
Subject: Re: example of insert timestamp