SyntaxFix
Write A Post
Hire A Developer
Questions
You could do it using SUBSTRING() function:
SUBSTRING()
UPDATE table SET column = SUBSTRING(column, 0, LEN(column) + 1 - N)
Removes the last N characters from every row in the column