2025-06-25 11:25:55 +02:00

5 lines
197 B
SQL

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