• another method...

    DECLARE @txt VARCHAR(20)

    SELECT @txt = 'helloALL'

    select STUFF(@txt,LEN(@txt)-2,0,' ')

    🙂