Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 412 Bytes

File metadata and controls

26 lines (18 loc) · 412 Bytes

right

description

Syntax

VARCHAR right(VARCHAR str)

它返回具有指定长度的字符串的右边部分, 长度的单位为「utf8字符」

example

MySQL > select right("Hello starrocks",5);
+-------------------------+
| right('Hello starrocks', 5) |
+-------------------------+
| starrocks                   |
+-------------------------+

keyword

RIGHT