Re: [SQL] The date of an entry? - Mailing list pgsql-sql

From Michael J Schout
Subject Re: [SQL] The date of an entry?
Date
Msg-id 35A78FAF.8D6E54AF@gkg.net
Whole thread Raw
In response to The date of an entry?  (Johann Spies <jhspies@alpha.futurenet.co.za>)
List pgsql-sql
Johann Spies wrote:
>
> Is there a system field that can enable me to determine when an entry into
> the database was made?  I see a reference to 'abstime'.  How can that be
> accessed?

Abstime is a column type, just like datetime, date, or even int for that
matter.  Once upon a time, there used to be "time travel" in postgreSQL
so every row had a tmin,tmax field in it that would show the last time
the row was updated, but they are no longer  available as time travel
was removed in the interest of efficiency. You can get the same effect
by creating your own timestamp column though:

create table foo (ts timestamp default now(), f1 int);
insert into foo (f1) values (12345);
select * from foo;

ts                    |   f1
----------------------+-----
1998-07-11 11:10:37-05|12345
(1 row)


Regards,
Mike

pgsql-sql by date:

Previous
From: Jeff Brown
Date:
Subject: help with join
Next
From: Herouth Maoz
Date:
Subject: RE: [SQL] Single vs. multiple indexes