MySQL SUBSTRING_INDEX()関数
例
指定された数の区切り文字が発生する前に、文字列のサブ文字列を返します。
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 1);
定義と使用法
SUBSTRING_INDEX()関数は、指定された数の区切り文字が発生する前に、文字列のサブ文字列を返します。
構文
SUBSTRING_INDEX(string, delimiter, number)
パラメータ値
Parameter | Description |
---|---|
string | Required. The original string |
delimiter | Required. The delimiter to search for |
number | Required. The number of times to search for the delimiter. Can be both a positive or negative number. If it is a positive number, this function returns all to the left of the delimiter. If it is a negative number, this function returns all to the right of the delimiter. |
技術的な詳細
で動作します: | MySQL4.0から |
---|
その他の例
例
指定された数の区切り文字が発生する前に、文字列のサブ文字列を返します。
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 2);