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
Two options for you:
SELECT SUBSTRING('ABC0005953', 5,7) SELECT RIGHT('ABC0005953', (LEN('ABC0005953') - 4))