I have a following text in column:
ABC XYZ 100 MG PL/2 ML ABCD
I would like to extract everything after number and before ML
Expected output:
100 MG PL/2 ML
I tried RIGHT with PATINDEX but it is displaying the whole string after numeric data like following:
Select RIGHT(col, PATINDEX('%[^A-Z] %', col))
From table
Output obtained:
100 MG PL/2 ML ABCD
Can anyone suggest me how to extract this data?