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

9 lines
258 B
SQL

-- Schema: dbo
-- Stored Procedure: PreGenerationStatoCounter
create procedure dbo.PreGenerationStatoCounter
as
begin
SELECT [stato_report] as stato ,count([stato_report]) as value from [C6MartPeriodico].[controllo_trimestrale] group by [stato_report]
end