Returns a portion of the input string for an input number of characters starting from the right.
RIGHT(input_string, length)
input_string
length
RIGHT("Hello World", 5)
Result: World
World