MySQL INSTR()関数
例
文字列「W3Schools.com」で「3」を検索し、位置を返します。
SELECT INSTR("W3Schools.com", "3") AS MatchPosition;
定義と使用法
INSTR()関数は、別の文字列で最初に出現する文字列の位置を返します。
この関数は、大文字と小文字を区別しない検索を実行します。
構文
INSTR(string1, string2)
パラメータ値
Parameter | Description |
---|---|
string1 | Required. The string that will be searched |
string2 | Required. The string to search for in string1. If string2 is not found, this function returns 0 |
技術的な詳細
で動作します: | MySQL4.0から |
---|
その他の例
例
文字列「W3Schools.com」で「COM」を検索し、位置を返します。
SELECT INSTR("W3Schools.com", "COM") AS MatchPosition;
例
CustomerName列で「a」を検索し、位置を返します。
SELECT INSTR(CustomerName, "a")
FROM Customers;