Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> What's wrong with this SQL query?
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 --- ---
I want to see
SEP OCT ---- ----
paschal. Received on Sun Feb 07 1999 - 09:56:46 CST
![]() |
![]() |