Функция 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. |
Технические детали
Работает в: | Из MySQL 4.0 |
---|
Дополнительные примеры
Пример
Возвращает подстроку строки до появления указанного количества разделителей:
SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 2);