Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 775 Bytes

File metadata and controls

33 lines (24 loc) · 775 Bytes

ends_with

description

Syntax

BOOLEAN ENDS_WITH (VARCHAR str, VARCHAR suffix)

如果字符串以指定后缀结尾,返回true。否则,返回false。任意参数为NULL,返回NULL。

example

MySQL > select ends_with("Hello starrocks", "starrocks");
+-----------------------------------+
| ends_with('Hello starrocks', 'starrocks') |
+-----------------------------------+
|                                 1 |
+-----------------------------------+

MySQL > select ends_with("Hello starrocks", "Hello");
+-----------------------------------+
| ends_with('Hello starrocks', 'Hello') |
+-----------------------------------+
|                                 0 |
+-----------------------------------+

keyword

ENDS_WITH