MySQL RPAD() 함수
예시
총 길이가 20이 되도록 문자열을 "ABC"로 오른쪽 채웁니다.
SELECT RPAD("SQL Tutorial",
20, "ABC");
정의 및 사용
RPAD() 함수는 문자열을 특정 길이로 다른 문자열로 오른쪽 채웁니다.
참고: LPAD() 함수 도 살펴보십시오 .
통사론
RPAD(string,
length, rpad_string)
매개변수 값
Parameter | Description |
---|---|
string | Required. The original string. If the length of the original string is larger than the length parameter, this function removes the overfloating characters from string |
length | Required. The length of the string after it has been right-padded |
rpad_string | Required. The string to right-pad to string |
기술적 세부 사항
작동: | MySQL 4.0에서 |
---|
더 많은 예
예시
"ABC"로 "CustomerName"의 텍스트를 마우스 오른쪽 버튼으로 채우고 총 길이는 30입니다.
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;