MySQL MID()関数
例
文字列から部分文字列を抽出します(位置5から開始し、3文字を抽出します)。
SELECT MID("SQL Tutorial", 5, 3) AS ExtractString;
定義と使用法
MID()関数は、文字列からサブ文字列を抽出します(任意の位置から開始)。
注: MID()およびSUBSTR()関数は、SUBSTRING()関数と同じです。
構文
MID(string, start, length)
パラメータ値
Parameter | Description |
---|---|
string | Required. The string to extract from |
start | Required. The start position. Can be both a positive or negative number. If it is a positive number, this function extracts from the beginning of the string. If it is a negative number, this function extracts from the end of the string |
length | Required. The number of characters to extract |
技術的な詳細
で動作します: | MySQL4.0から |
---|
その他の例
例
列のテキストから部分文字列を抽出します(位置2から開始し、5文字を抽出します)。
SELECT MID(CustomerName,
2, 5) AS ExtractString
FROM Customers;
例
文字列から部分文字列を抽出します(最後から開始し、位置-5で、5文字を抽出します)。
SELECT MID("SQL Tutorial", -5, 5) AS ExtractString;