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 |
기술적 세부 사항
작동: | MySQL 4.0에서 |
---|
더 많은 예
예시
열의 텍스트에서 부분 문자열 추출(위치 2에서 시작, 5자 추출):
SELECT MID(CustomerName,
2, 5) AS ExtractString
FROM Customers;
예시
문자열에서 부분 문자열 추출(끝에서 시작하여 위치 -5에서 5자 추출):
SELECT MID("SQL Tutorial", -5, 5) AS ExtractString;