starts_with
starts_with
説明
この関数は、指定された接頭辞で文字列が始まる場合に1を返します。それ以外の場合は、0を返し ます。引数がNULLの場合、結果もNULLです。
構文
BOOLEAN starts_with(VARCHAR str, VARCHAR prefix)
例
mysql> select starts_with("hello world","hello");
+-------------------------------------+
|starts_with('hello world', 'hello') |
+-------------------------------------+
| 1 |
+-------------------------------------+
mysql> select starts_with("hello world","world");
+-------------------------------------+
|starts_with('hello world', 'world') |
+-------------------------------------+
| 0 |
+-------------------------------------+
キ ーワード
START_WITH