# strright ## description ### Syntax `VARCHAR strright(VARCHAR str)` 它返回具有指定长度的字符串的右边部分 ## example ``` mysql> select strright("Hello doris",5); +-------------------------+ | strright('Hello doris', 5) | +-------------------------+ | doris | +-------------------------+ ``` ##keyword STRRIGHT