PDC_REPORT_CreazioneDB/sql/Collaudo bfdskrepsei02c/procedure/dbo_sp_checkIfReportIsAlreadyPresent.sql
2025-06-26 18:47:11 +02:00

10 lines
246 B
Transact-SQL

CREATE PROCEDURE [dbo].[sp_checkIfReportIsAlreadyPresent]
@idReport as int,
@idCliente as int
AS
BEGIN
SET NOCOUNT ON;
SELECT Identificativo
FROM [ReportperClienteDati]
WHERE idReport=@idReport and idCliente=@idCliente
END