MySQL LPAD() 함수
예시
총 길이가 20이 되도록 문자열을 "ABC"로 왼쪽 채웁니다.
SELECT LPAD("SQL Tutorial",
20, "ABC");
정의 및 사용
LPAD() 함수는 문자열을 특정 길이로 다른 문자열로 왼쪽 채웁니다.
참고: RPAD() 함수 도 살펴보십시오 .
통사론
LPAD(string,
length, lpad_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 left-padded |
lpad_string | Required. The string to left-pad to string |
기술적 세부 사항
작동: | MySQL 4.0에서 |
---|
더 많은 예
예시
"CustomerName"의 텍스트를 "ABC"로 왼쪽 채움(총 길이 30):
SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;