PDC_REPORT_CreazioneDB/sql/Collaudo/funzioni/dbo_CodiceAgenteDirettiDi.sql
2025-06-10 15:29:00 +02:00

16 lines
440 B
Transact-SQL

-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date, ,>
-- Description: <Description, ,>
-- =============================================
CREATE FUNCTION [dbo].[CodiceAgenteDirettiDi]
(
-- Add the parameters for the function here
@CodiceAgente varchar(6)
)
RETURNS varchar(6)
AS
BEGIN
-- Declare the return variable here
RETURN REPLACE(REPLACE(@CodiceAgente,'S','0'),'I','0')
END