right¶
Description¶
Returns a rightmost substring of its input.
Return type¶
string
Domain¶
This is a scalar function (calculates a single output value for a single input row.)
Categories¶
Usage¶
right( value, length )
Argument |
Type |
Required |
Multiple |
---|---|---|---|
value |
string |
Required |
Only one |
length |
int64 |
Required |
Only one |
Examples¶
make_col rightstring:right(somestring, 4)
Will make a ‘rightstring’ column with the right 4 characters of the text in the ‘somestring’ column.