MySQL INSERT() 함수
예시
"W3Schools.com" 문자열에 "Example" 문자열을 삽입합니다. 처음 9자를 바꿉니다.
SELECT INSERT("W3Schools.com", 1, 9, "Example");
정의 및 사용
INSERT() 함수는 문자열 내에서 지정된 위치에 특정 문자 수만큼 문자열을 삽입합니다.
통사론
INSERT(string, position, number, string2)
매개변수 값
Parameter | Description |
---|---|
string | Required. The string that will be modified |
position | Required. The position where to insert string2 |
number | Required. The number of characters to replace |
string2 | Required. The string to insert into string |
반환 값
- 위치 가 string 의 길이를 벗어나면 이 함수는 string 을 반환합니다.
- 숫자 가 나머지 문자열 의 길이보다 크면 이 함수는 위치 에서 문자열 끝까지 문자열 을 대체합니다.
기술적 세부 사항
작동: | MySQL 4.0에서 |
---|
더 많은 예
예시
"W3Schools.com" 문자열에 "no" 문자열을 삽입합니다. 위치 11부터 시작하여 세 문자를 바꿉니다.
SELECT INSERT("W3Schools.com", 11, 3, "no");