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.

 

Example:

SELECT Substring('ABCDE', 2, 1)

Results: 'B'

 

Example:

SELECT Substring('ABCDE', 4, 2)

Results: 'DE'