String Functions MSSQL Tutorial

This can be  from 1 character up to all the characters in the string.
5>
6> DECLARE @LEFT_STRING char(100)
7> SET @LEFT_STRING = "www.rntsoft.com, www.rntsoft.com, rntsoft"
8> SELECT LEFT(@LEFT_STRING,10)
9> GO
--------------------
www.rntsoft
(1 rows affected)