cfcProgrammer
Programmer
Hi,
I am calling a stored procedure from an ASP page, in the stored procedure I have to run a select statement using a union to another select statement. What I thought I could do was create a view and then just query the view and send the data back to a result set and display the data back on the asp page. However, I've discovered that I can not create or alter a view within a stored procedure. I haven't heard anything good regarding cursors and am not even sure if I can get my results usning one..
Can anyone help me figure out the best solution to this issue.
here is the select statements that are giving me the correct results I just need to figure out how to accomplish this through a stored procedure.
Where you see the hardcoding of dates and mid.. these will be passed in as parameters.
Thank you so much for any help that you can provide.
cfcProgrammer
I am calling a stored procedure from an ASP page, in the stored procedure I have to run a select statement using a union to another select statement. What I thought I could do was create a view and then just query the view and send the data back to a result set and display the data back on the asp page. However, I've discovered that I can not create or alter a view within a stored procedure. I haven't heard anything good regarding cursors and am not even sure if I can get my results usning one..
Can anyone help me figure out the best solution to this issue.
here is the select statements that are giving me the correct results I just need to figure out how to accomplish this through a stored procedure.
Code:
Alter view FSHRS as
(select client1name as "Officer", sum(hours) as "Hours", count(mid) as "Mission"
from flt f join mission m on f.msID=m.msID
where convert(datetime,(convert(varchar(2),f.mn) + '/' + convert(varchar(2), f.dy) + '/' + convert(varchar(4),f.yr)))
between '01-apr-2004' and '31-mar-2005' and
left(m.mid,4)like 'BKN%'
and fo1='Y' group by client1name)
Union
(select client2name as "Officer", sum(hours) as "Hours", count(mid) as "Missions"
from flt f join mission m on f.msID=m.msID
where convert(datetime,(convert(varchar(2),f.mn) + '/' + convert(varchar(2), f.dy) + '/' + convert(varchar(4),f.yr)))
between '01-apr-2004' and '31-mar-2005' and
left(m.mid,4)like 'BKN%'
and fo2='Y' group by client2name)
SELECT distinct Officer as 'Officer', sum(Hours) as 'Hours', sum(Mission) as 'Missions'
from FSHRS
group by Officer
Where you see the hardcoding of dates and mid.. these will be passed in as parameters.
Thank you so much for any help that you can provide.
cfcProgrammer