top of page
Shareware software
Topic
Syntax:
RIGHT(str,len)
Returns the rightmost len characters from the string str, or NULL if
any argument is NULL.
URL: https://dev.mysql.com/doc/refman/8.0/en/string-functions.html
Example
mysql> SELECT RIGHT('foobarbar', 4);
-> 'rbar'
bottom of page