Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save niisar/e44750bdebbf50cff55f to your computer and use it in GitHub Desktop.
Save niisar/e44750bdebbf50cff55f to your computer and use it in GitHub Desktop.
Delete last N characters from field in a SQL Server database
UPDATE mytable SET column=LEFT(column, LEN(column)-5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment