PDC_REPORT_CreazioneDB/sql/Produzione/procedure/dbo_PreGenerationElabCounter.sql
2025-06-10 15:29:00 +02:00

6 lines
153 B
SQL

create procedure dbo.PreGenerationElabCounter
as
begin
SELECT elab, count(ELAB) as value from C6MartPeriodico.CRUSCOTTO_CONTRATTISEI
group by ELAB
end