SUBSTRING(): starts at a position and counts characters to the right,
returning a substring of a specified length : Substring « String Functions « SQL Server / T-SQL
SUBSTRING(): starts at a position and counts characters to the right,
returning a substring of a specified length
1> -- SUBSTRING(): starts at a position and counts characters to the right,
returning a substring of a specified length.
2>
3> DECLARE @FullName VarChar(25)
4> SET @FullName = 'www.java2s.com'
5> SELECT SUBSTRING(@FullName, 4, 6)
6> GO