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: What's wrong with this SQL query?

Re: What's wrong with this SQL query?

From: Albert Zhu <lzhu_at_gte.net>
Date: Sun, 07 Feb 1999 11:56:46 -0500
Message-ID: <36BDC5CE.ABD26C3C@gte.net>

Try function TO_DATE , and use format 'DD-MON-YY'.

Albert


Paschal Mushubi wrote:

> What's wrong with this SQL?
>
> select T1.Order_Date SEP,
> T2.Order_Date OCT
> from Sales T1,
> Sales T2
> where T1.Order_Date between '01-SEP-98' and '30-SEP-98'
> and T2.Order_Date between '01-OCT-98' and '30-OCT-98'
> and T1.Dept_Number = T2.Dept_Number
>
> It returns:
>
> SEP OCT
> --- ---
> 09-22-98 09-22-98
>
> I want to see
>
> SEP OCT
> ---- ----
> 22-SEP-98 15-OCT-98
>
> What I am missing?
>
> paschal.
Received on Sun Feb 07 1999 - 10:56:46 CST

Original text of this message

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