SUBSTRING(string_exp, start, length)
Returns a character string that is derived from string_exp beginning at the character position specified by start for length
characters.
SELECT Substring('ABCDE', 2, 1)
Results: 'B'
SELECT Substring('ABCDE', 4, 2)
Results: 'DE'