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
SELECT RIGHT('ABC0005953', LEN('ABC0005953') - 3)