How to remove first letter if it is number in sql?
I have some values in my sql
(i.e)
Psalm. 121:7
1Peter 3:4
James 1:22
2Timothy 4:2
Here 1st and 3rd values are correct but 2nd and 4th value i need to remove numbers. How to do this via sql query?
I want the result
Psalm. 121:7 = Psalm. 121:7
1Peter 3:4 = Peter 3:4
James 1:22 = James 1:22
2Timothy 4:2 = Timothy 4:2