Re: Using DateDiff with Postgres

From: "Josh Berkus" <josh(at)agliodbs(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Using DateDiff with Postgres
Date: 2001-06-28 17:15:21
Message-ID: web-78658@davinci.ethosmedia.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Bruce, Tom, Etc:

This question comes up so often. Can't we have a FAQ about it
somewhere?

Jeff,

> Hi there. I was wondering if anyone can tell me the correct syntax
> for
> using DateDiff for postgrees. I'm using MI (or mi) for minute and I
> keep getting attribute 'mi' not found.

Datediff is not a SQL function. It is a MICROSOFT function, due to MS's
poor implementation of data types.

In PostgreSQL, you simply add and subtract interval values to datetime
values:

'2001-06-27 14:43:21'::DATETIME - '00:10:00'::INTERVAL = '2001-06-27
14:33:21'::DATETIME

'2001-06-27 14:43:21'::DATETIME - '2001-06-27 14:33:21'::DATETIME =
'00:10:00'::INTERVAL

For more information, see "Functions and Operators" in the PostgreSQL
online docs.

-Josh Berkus

______AGLIO DATABASE SOLUTIONS___________________________
Josh Berkus
Complete information technology josh(at)agliodbs(dot)com
and data management solutions (415) 565-7293
for law firms, small businesses fax 621-2533
and non-profit organizations. San Francisco

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Alex Pilosov 2001-06-28 17:20:15 Re: Re: Re: Re: binary data
Previous Message Ross J. Reedstrom 2001-06-28 17:11:51 Re: Subquery error. Help please!!