i have large string in SQL Server. I want to truncate that string to 10 or 15 character
Original string
this is test string. this is test string. thi
CASE WHEN col IS NULL THEN '' ELSE SUBSTRING(col,1,15)+ '...' END AS Col