I have a column called TCODE which has value like 5T, 6545H,25 and S4444. Now I want only 3 rows out of the 4 rows returned and only the following non numeric bits of those columns T,H or S. Table name is CODES .
Pseudo code Select TCODE from CODES where I strip out numeric part of those columns where a mix of numeric and non numeric exist.
Expected Results
TCODE
T
H
S
How can I do this ?