Функция MySQL SUBSTR()
Пример
Извлечь подстроку из строки (начать с позиции 5, извлечь 3 символа):
SELECT SUBSTR("SQL Tutorial", 5, 3) AS ExtractString;
Определение и использование
Функция SUBSTR() извлекает подстроку из строки (начиная с любой позиции).
Примечание. Функции SUBSTR() и MID() аналогичны функции SUBSTRING() .
Синтаксис
SUBSTR(string, start, length)
ИЛИ:
SUBSTR(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) |
Технические детали
Работает в: | Из MySQL 4.0 |
---|
Дополнительные примеры
Пример
Извлечь подстроку из текста в столбце (начать с позиции 2, извлечь 5 символов):
SELECT SUBSTR(CustomerName,
2, 5) AS ExtractString
FROM Customers;
Пример
Извлечь подстроку из строки (начать с конца, с позиции -5, извлечь 5 символов):
SELECT SUBSTR("SQL Tutorial", -5, 5) AS ExtractString;