2025-06-26 18:47:11 +02:00

6 lines
155 B
Transact-SQL

CREATE PROCEDURE [dbo].[sp_getSezioniByReportId]
@pIdReport as int
AS
BEGIN
select idSezione from dbo.ReportSezionePers where idreport = @pidReport
END