I have a Table in my database in SQL. This table has a column by this name : Title
Values of this column is : A + B + CC , D + EEE , F + G + H + I , HHHH
I need to split this values and select last index of this values.
How can I select this result : CC , EEE , I , HHHH ?
Presumably, the letters can be more than one character. For this, you need reverse and charindex: