| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: SQL problem enclosed. SELECTing moving window of values...
Remo, this is just an idea but you might be able to extend it something that is working
select monthname(a.changedate), count(1) from workstat as a, (select distinct month(changedate) from workstat) as b(m) where month(a.changedate) >= b.m and a.changedate <= '3/1/2000' and a.wostat = 'INPRG' group by monthname(a.changedate)
/Lennart Received on Wed Nov 07 2001 - 16:10:07 CST
![]() |
![]() |