Re: subtract a day from the NOW function

From: Osvaldo Kussama <osvaldo_kussama(at)yahoo(dot)com(dot)br>
To: "Campbell, Lance" <lance(at)uiuc(dot)edu>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: subtract a day from the NOW function
Date: 2007-06-07 21:41:21
Message-ID: 276697.3120.qm@web60816.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-sql


--- "Campbell, Lance" <lance(at)uiuc(dot)edu> escreveu:

> Table
>
> Field "some_timestamp" is a timestamp.
>
>
>
> In a "WHERE" statement I need to compare a timestamp
> field in a table
> "some_timestamp" to now() - one day.
>
>
>
> Example:
>
>
>
> SELECT some_timestamp WHERE to_char(some_timestamp,
> 'YYYYMMDD') >
> (to_char(now(), 'YYYYMMDD') - 1 day);
>
>
>
> The statement "to_char(now(), 'YYYYMMDD') - 1 day)"
> is obviously
> incorrect. I just need to know how to form this in
> a way that will
> work.
>
>
>
> If there is an entirely different solution I am all
> for it. Do note
> that I started down this path because I want to
> exclude the hour,
> minutes and seconds found in the field
> "some_timestamp" and in the
> function now().
>

Try:
SELECT some_timestamp
WHERE some_timestamp > 'yesterday'::timestamp;

Look 8.5.1.5. Special Values at:
http://www.postgresql.org/docs/8.2/interactive/datatype-datetime.html

[]s
Osvaldo


____________________________________________________________________________________
Novo Yahoo! Cadê? - Experimente uma nova busca.
http://yahoo.com.br/oqueeuganhocomisso

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Michael Glaesemann 2007-06-07 21:53:03 Re: subtract a day from the NOW function
Previous Message Jonathan Vanasco 2007-06-07 21:34:29 list all columns in db

Browse pgsql-sql by date

  From Date Subject
Next Message Michael Glaesemann 2007-06-07 21:53:03 Re: subtract a day from the NOW function
Previous Message Steve Crawford 2007-06-07 21:07:33 Re: subtract a day from the NOW function