I want to trim the characters from the left in my SQL value:
I have the following value:
ABC0005953
How do i trim the value 3 character
You can use STUFF function to replace chars 1 thru 3 with an empty string
STUFF
SELECT STUFF('ABC0005953',1,3,'')
I believe it's a better and more universal approach than cutting string.