DECLARE @Variable AS VARCHAR(50) SET @Variable = 'codyx' SELECT UPPER(LEFT(@Variable, 1)) + LOWER(SUBSTRING(@Variable, 2, LEN(@Variable)-1)) AS PremiereLettreMajuscule;