PDC_REPORT_CreazioneDB/sql/storedCollaudo/dbo_PreGenerationElabCounter.sql
2025-06-06 19:02:52 +02:00

10 lines
213 B
SQL

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