SUBSTRING, SUBSTR
Returns a substring starting at the character indicated by the<start> index and including the number of characters defined by <length>.
Character indexing starts at index 1.
Syntax
Parameters
At least one of the optional arguments
<start> and <length> must be given.
Negative <start> values begin the substring before the input <expression>. Positions before the input <expression> are considered empty.
Return Type
TEXT or BYTEA. The type of <expression>
Examples
In the example below, the string is offset by 1 and so theSUBSTRING command begins at the first letter, “h”. The <length> of 5 indicates the resulting string should be only five characters long.
Rows: 1Execution time: 4.82ms
<length> is not provided. This means all characters are included after the <start> index, which is 7.
Rows: 1Execution time: 5.26ms
<start> values, empty positions before the input string are selected. Thus, without <length> negative values will select the entire input <string>.
Rows: 1Execution time: 5.16ms
<start> value and <length>, the empty positions before the string are counted towards the substring length. In this example, beginning the substring at -2 for 8 characters includes 3 empty positions and 5 positions with characters from the input <expression>.
Rows: 1Execution time: 5.19ms