cfcProgrammer
Programmer
Hi,
What I am trying to do is calculate the different types of hours per month. When I try to get the weekend hours, the result I get is the total weekend hours for all months but in each row. ???
The 340.06 weekend hours is incorrect. This is actually the total weekend hours for the year. ???
When I try to group by within the "weekend hours" select statement I get an error stating
"Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression."
Here is the query I created.
Does anyone have any suggestions?
As always, any help or suggestions will be greatly appreciated.
Thank you
Colleen
cfcProgrammer
What I am trying to do is calculate the different types of hours per month. When I try to get the weekend hours, the result I get is the total weekend hours for all months but in each row. ???
Code:
Month Flights Day Hrs Night Partol Transit Weekend
1 22 54.00 37.80 74.02 17.75 340.06
2 22 48.40 25.20 66.91 11.34 340.06
3 30 103.95 30.15 112.72 21.38 340.06
4 19 79.30 13.00 87.06 5.24 340.06
5 23 89.66 13.99 99.56 4.14 340.06
When I try to group by within the "weekend hours" select statement I get an error stating
"Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression."
Here is the query I created.
Code:
SELECT
mn as "Month", count(*) as "No of Flights",
sum(dayhours) as "Day Hours", sum(nighthours) as "Night Hours",
sum(patrolhours) as "Patrol Hours", sum(transithours) as "Transit Hours",
(SELECT
sum(flighthours)
FROM
flt f join mission m on f.mseq=m.mseq
WHERE
convert(datetime,(convert(varchar(2),f.mn) + '/' + convert(varchar(2), f.dy) + '/' + convert(varchar(4),f.yr)))
BETWEEN '01-apr-2007' and '31-mar-2008'
AND
datename(dw, convert(datetime,(convert(varchar(2),f.mn) + '/' + convert(varchar(2), f.dy) + '/' + convert(varchar(4),f.yr))))
IN ('Saturday', 'Sunday')
AND
left(m.mid,4)like 'BKS%') as "WeekEnd Hours",
sum(flighthours) as "Flight Hours"
FROM
flt f join mission m on f.mseq=m.mseq
WHERE
convert(datetime,(convert(varchar(2),f.mn) + '/' + convert(varchar(2), f.dy) + '/' + convert(varchar(4),f.yr)))
BETWEEN
'01-apr-2007' and '31-mar-2008'
AND
left(m.mid,4)like 'BKS%'
GROUP BY mn
Does anyone have any suggestions?
As always, any help or suggestions will be greatly appreciated.
Thank you
Colleen
cfcProgrammer