ฟังก์ชันMySQL LPAD()
ตัวอย่าง
ปาดสตริงซ้ายด้วย "ABC" ให้มีความยาวรวม 20:
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;