RightSide
Summary
The RightSide
function returns the last n characters of the input string.
Syntax
RightSide(<string>, <integer>) |
Return Type
String
Details
The integer input parameter index begins at 1.
Examples
select RightSide(‘abcdefg’, 3) as RightSide_example
from Empty();
select RightSide(first_name, 4) as RightSide_example,
first_name
from xactly.xc_participant;