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

10 lines
190 B
Transact-SQL

CREATE procedure [dbo].[HIST_GETIMAGE_RET]
@id as int,
@repository as int,
@idMetadato as int
as
BEGIN
SELECT [FILEREPORT]
FROM [dbo].[REPORTFISICO]
WHERE IDENTIFICATIVO=@ID
end