I have a column called ID which I only want to extract portion of the ID.
For example:
ID
---------
XX00ABCDE
XX1067HJK
XX78YUTIO
XX00NNYUT
XX56PBPHY
I do not want the initial XX and any leading 0 after the XX.
The result I want would be:
ExtractID
---------
ABCDE
1067HJK
78YUTIO
NNYUT
56PBPHY
How might I accomplish this using SQL?
Thank you in advance for your help.
source
in your example:
SELECT REPLACE(ID,'XX','') FROM
TBALE_NAME