hi,I need a hand in this, i have a report that was built with this statement
select nombreanalista, mes, anio, NROCOLOCACIONES, montoacumulado
from consolidadocolocaciones A,analista B
WHERE MES >=
_MESINICIO AND ANIO >=
_ANIOINICIO
AND MES <=
_MESFIN AND ANIO <=
_ANIOFIN
AND CODIGOTIPOREPORTE = 1
AND a.codigopersonaanalista=b.codigopersonaanalista
and I want to show at the end of it a graphic that must be built with this statement
select mes, anio,SUM(montoacumulado)
from consolidadocolocaciones
WHERE MES >=
_MESINICIO AND ANIO >=
_ANIOINICIO
AND MES <=
_MESFIN AND ANIO <=
_ANIOFIN
AND CODIGOTIPOREPORTE = 1
GROUP BY MES,ANIO
when I tried to do it, there was a confusion, and i could not buit the graphic, what do i have to do please??
select nombreanalista, mes, anio, NROCOLOCACIONES, montoacumulado
from consolidadocolocaciones A,analista B
WHERE MES >=
AND MES <=
AND CODIGOTIPOREPORTE = 1
AND a.codigopersonaanalista=b.codigopersonaanalista
and I want to show at the end of it a graphic that must be built with this statement
select mes, anio,SUM(montoacumulado)
from consolidadocolocaciones
WHERE MES >=
AND MES <=
AND CODIGOTIPOREPORTE = 1
GROUP BY MES,ANIO
when I tried to do it, there was a confusion, and i could not buit the graphic, what do i have to do please??