RIGHT()
RIGHT(str, len)
str
len
Returns the rightmost len characters from the string str (or NULL if any argument is NULL). This code returns the string “Columbus”:
NULL
SELECT RIGHT('Christopher Columbus', '8');