• Maybe you could use something like this. The CTE is just to have some sample data to test with.

    WITH SampleData(String) AS(

    SELECT 'Doe, John, H *^' UNION ALL

    SELECT 'Doe, John, H, **' UNION ALL

    SELECT 'Doe, John, H *¨#$'

    )

    SELECT LEFT( String, LEN(String) - PATINDEX( '%[A-Za-z]%', REVERSE(String)) + 1)

    FROM SampleData

    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