RIGHT: return a number of characters from the right-hand side of a string
1> -- RIGHT: return a number of characters from the right-hand side of a string.
2>
3> DECLARE @RIGHT_STRING char(100)
4> SET @RIGHT_STRING = "www.java2java.com"
5>
6> SELECT RIGHT(@RIGHT_STRING,10)
7> GO