Hi to all, why don't appear the incon with a link to a detailed report?
Thanks a lot
Stefano
DROP PROCEDURE IF EXISTS sp_DBR_AL_SCUOLA
$$
CREATE PROCEDURE
( anno2 int, istituzioni int)
_
BEGIN
select 'dbr.report','sp_DBR_AL_SCUOLA_DETT','anno_sel=2002','id_ist=1';
select 'dbr.count', 2;
select
i.ISTITUZIONE_DESCRIZIONE as 'Istituzione',
count(*) as 'Totale alunni'
from osp.indicatori_completo i
where anno = anno2 and (i.ISTITUZIONE_ID = istituzioni or istituzioni = 0)
group by i.ANNO, i.ISTITUZIONE_DESCRIZIONE
order by ISTITUZIONE_DESCRIZIONE;
END
$$