cfcProgrammer
Programmer
Hi,
I am trying to create a report using asp/html calling a stored procedure to get the data.
One of the columns needed is gathered using this sql statement.
and the result is
What I need is a column for each month with all of the fishery types for that month in one field.
Example;
Can this be done using a case statement or is there another way of accomplishing this?
Also, the query I displayed above takes about 37seconds to run, is there anything that you can suggest I change in order to speed this up a bit?
Any help that you can provide will most certainly be appreciated.
Thank you so much
Colleen
cfcProgrammer
I am trying to create a report using asp/html calling a stored procedure to get the data.
One of the columns needed is gathered using this sql statement.
Code:
select distinct mn as "Month",s.name as "Name"
from flt f join mission m on f.mseq=m.mseq
join edt e on e.mseq = f.mseq
join species s on s.scicode = e.fish
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,s.name
order by mn,s.name
and the result is
Code:
Month Fishery
1 CLAMS
1 CLAMS-STIMPSON SURF
1 GROUNDFISH-GEN
1 HALIBUT
1 LOBSTER
1 UNDETERMINED
1 SCALLOPS
2 CLAMS
2 GROUNDFISH-GEN
2 LOBSTER
2 SCALLOPS
2 UNDETERMINED
3 CLAMS
3 CLAMS-STIMPSON SURF
3 CRABS
Example;
Code:
Month Fishery
1 CLAMS,CLAMS-STIMPSON SURF,GROUNDFISH-GEN,HALIBUT,
LOBSTER,UNDETERMINED,SCALLOPS
2 CLAMS,GROUNDFISH-GEN,LOBSTER,SCALLOPS,UNDETERMINED
3 CLAMS,CLAMS-STIMPSON SURF,CRABS
Can this be done using a case statement or is there another way of accomplishing this?
Also, the query I displayed above takes about 37seconds to run, is there anything that you can suggest I change in order to speed this up a bit?
Any help that you can provide will most certainly be appreciated.
Thank you so much
Colleen
cfcProgrammer