MySQL SUBSTRING()関数
例
文字列から部分文字列を抽出します(位置5から開始し、3文字を抽出します)。
SELECT SUBSTRING("SQL Tutorial", 5, 3) AS ExtractString;
定義と使用法
SUBSTRING()関数は、文字列からサブ文字列を抽出します(任意の位置から開始)。
注: SUBSTR ()およびMID()関数は、SUBSTRING()関数と同じです。
構文
SUBSTRING(string, start, length)
また:
SUBSTRING(string FROM start FOR 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 | Optional. The number of characters to extract. If omitted, the whole string will be returned (from the start position) |
技術的な詳細
で動作します: | MySQL4.0から |
---|
その他の例
例
列のテキストから部分文字列を抽出します(位置2から開始し、5文字を抽出します)。
SELECT SUBSTRING(CustomerName,
2, 5) AS ExtractString
FROM Customers;
例
文字列から部分文字列を抽出します(最後から開始し、位置-5で、5文字を抽出します)。
SELECT SUBSTRING("SQL Tutorial", -5, 5) AS ExtractString;