age command

Started by Jan Theofelover 23 years ago2 messagesgeneral
Jump to latest
#1Jan Theofel
theofel@etes.de

Hello,

I have a short equstio anbout the age command:

When I use for example

age(timestamp('2002-08-13'), timestamp('2002-08-12')

I get "1 day" and for

age(timestamp('2002-08-13'), timestamp('2002-07-13')

I get "1 mon".

But what I need is the total difference in days as integer.

How can I get this?

Thanks,
Jan

--
Jan Theofel Fon: +49 (7 11) 48 90 83 - 0
ETES - EDV-Systemhaus GbR Fax: +49 (7 11) 48 90 83 - 50
Libanonstrasse 58 A * D-70184 Stuttgart Web: http://www.etes.de

______________________________________
Inflex - eMail Scanning and Protection
Queries to: postmaster@etes.de

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jan Theofel (#1)
Re: age command

Jan Theofel <theofel@etes.de> writes:

But what I need is the total difference in days as integer.

Subtract the dates.

regression=# select date('2002-08-13') - date('2002-07-13');
?column?
----------
31
(1 row)

regards, tom lane