SUBSTRING
Get the substring of from a string starting at a given index.
Declaration
SUBSTRING(base_string, start, end) -> substring
SUBSTRING(base_string, start) -> substring
Parameters
Return Values
- substring
- string -The resulting substring taken from the baseString starting at the start index and ending at the end index or the end of the baseString.