SyntaxFix
Write A Post
Hire A Developer
Questions
Here an alternative using SUBSTRING
SUBSTRING
SELECT SUBSTRING([Field], LEN([Field]) - 2, 3) [Right3], SUBSTRING([Field], 0, LEN([Field]) - 2) [TheRest] FROM [Fields]
with fiddle