I want to truncate a column to a max of 100 characters. How do you do this in SQL Server?
You can also use the LEFT() function.
LEFT(col, 100)