• Just to add on what Sean said, you could change those functions with a LEFT function.

    WITH CTE(String) AS(

    SELECT 'Some test string')

    SELECT REVERSE(STUFF(REVERSE(String), 1, 3, '')) FROM CTE

    UNION ALL

    SELECT LEFT(String, LEN(String) - 3 ) FROM CTE

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2