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);