i have in my database three word phrases:
for example: "JKH Drainage Units"
Does anyone knows how to get the first letter of the third word?
i need to extract the "U" of the "Units" word.
N.B. i tried to use SUBSTRING(Phrase, PATINDEX('% % %', Phrase) + 1, 1) but it didn't work for me...