Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: SQL retrieving last two months

Re: SQL retrieving last two months

From: Per Magne <perman_at_online.no>
Date: Fri, 28 Jun 2002 15:18:19 +0200
Message-ID: <afhnn2$nb$1@news.ost.eltele.no>


This only gives you the last 60 days.
I want to get each month separately.

"ImPrecise" <f_puhan_at_precise.com> skrev i melding news:f_puhan-939910.08495128062002_at_vienna7.his.com...
> In article <afhljn$cc$1_at_news.ost.eltele.no>,
> "Per Magne" <perman_at_online.no> wrote:
>
> > I need to have an SQL selecting all records from the past two months
(this
> > month and last month).
> >
> > Anybody having a solution on this problem (especially December /
January)?
> >
> >
> >
> >
> >
> > Ex. Table:
> >
> > RECNO int
> >
> > DATE datetime
> >
> > TITLE char(40)
>
> I don't currently have the time to hack out the code, but I suspect your
> best way to do this is to use SYSDATE and SYSDATE - 60 in your WHERE
> clause. Something like
>
> SELECT
> RECNO, DATE, TITLE
> FROM
> table
> WHERE
> DATE between SYSDATE and (SYSDATE - 60)
> /
>
> Hth,
>
> --
> The underscore character does not belong in my address. You know the
drill...
> ***
> Anyone sufficiently smart enough to configure and use USEnet for research
should
> be smart enough to Read The Freakin' Documentation!
Received on Fri Jun 28 2002 - 08:18:19 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US