cfcProgrammer
Programmer
Hi,
I have a query that is a little confusing but for the expert it may not be too bad.
What I am trying to do is break down my data by fiscal year and display.
I have some logic not right in my query and I've looked at it so long now that I can't seem to figure out where the issue lies.
When I run the select statement alone for the specified date I am getting a result for OTotal of 142 but when I run the entire sql statement I am getting 855... I am thinking it has to do with how I am calculating the months out and adding OTotal but I need some help in identifying that and coming up with a solution.
As always.. any help is greatly appreciated.
Thank you
Here is the sql;
If you need me to send over some test data let me know.
Again thank you
cfcProgrammer
I have a query that is a little confusing but for the expert it may not be too bad.
What I am trying to do is break down my data by fiscal year and display.
I have some logic not right in my query and I've looked at it so long now that I can't seem to figure out where the issue lies.
When I run the select statement alone for the specified date I am getting a result for OTotal of 142 but when I run the entire sql statement I am getting 855... I am thinking it has to do with how I am calculating the months out and adding OTotal but I need some help in identifying that and coming up with a solution.
As always.. any help is greatly appreciated.
Thank you
Here is the sql;
Code:
SELECT
SUM(totals.[Fiscal01]) AS [2001/02],
SUM(totals.[Fiscal02]) AS [2002/03],
SUM(totals.[Fiscal03]) AS [2003/04],
SUM(totals.[Fiscal04]) AS [2004/05],
SUM(totals.[Fiscal05]) AS [2005/06],
SUM(totals.[Fiscal06]) AS [2006/07],
SUM(totals.[Fiscal07]) AS [2007/08]
FROM (
--this query splits each Month to its own column.
--SUM the results at the outside step
SELECT
CASE WHEN (I.mm >= '04' and I.yr = '2001') or (I.mm <='03' and I.yr = '2002') THEN I.OTotal ELSE 0 END AS [Fiscal01],
CASE WHEN (I.mm >= '04' and I.yr = '2002') or (I.mm <='03' and I.yr = '2003') THEN I.OTotal ELSE 0 END AS [Fiscal02],
CASE WHEN (I.mm >= '04' and I.yr = '2003') or (I.mm <='03' and I.yr = '2004') THEN I.OTotal ELSE 0 END AS [Fiscal03],
CASE WHEN (I.mm >= '04' and I.yr = '2004') or (I.mm <='03' and I.yr = '2005') THEN I.OTotal ELSE 0 END AS [Fiscal04],
CASE WHEN (I.mm >= '04' and I.yr = '2005') or (I.mm <='03' and I.yr = '2006') THEN I.OTotal ELSE 0 END AS [Fiscal05],
CASE WHEN (I.mm >= '04' and I.yr = '2006') or (I.mm <='03' and I.yr = '2007') THEN I.OTotal ELSE 0 END AS [Fiscal06],
CASE WHEN (I.mm >= '04' and I.yr = '2007') or (I.mm <='03' and I.yr = '2008') THEN I.OTotal ELSE 0 END AS [Fiscal07]
FROM (
select f.mn as mm,f.yr as yr, count(*) as OTotal
from edt e join mission m on e.mseq=m.mseq join flt f on e.mseq=f.mseq
where e.tcc IN('V2-','V5-','V--','VH-','VI-','VL-','VO-','VP-','VU-','VW-','VX-','VY-')
and (e.call <> '' or e.name <>'' or e.side<>'')
and e.src<>'U'
and convert(datetime,(convert(varchar(2),f.mn) + '/' + convert(varchar(2), f.dy) + '/' + convert(varchar(4),f.yr)))
between '04/01/2007 ' and '03/31/2008'
group by f.yr,f.mn)I
)totals
Again thank you
cfcProgrammer