• This can be simplified with the concat function.
    😎

    USE TEEST;
    GO
    SET NOCOUNT ON;

    DECLARE @PERC DECIMAL(6,4) = 1.25;

    SELECT CONCAT(CONVERT(INT,@PERC * 100,0),'%');