PDC_REPORT_CreazioneDB/sql/Testbes/procedure/dbo_PreGenerationStatoCounter.sql
2025-06-10 15:29:40 +02:00

5 lines
201 B
Transact-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