I want to truncate a column to a max of 100 characters. How do you do this in SQL Server?
substring is the method: SUBSTRING ( value_expression ,start_expression , length_expression ) from the help.