ฟังก์ชันMySQL RPAD()
ตัวอย่าง
วางสตริงด้านขวาด้วย "ABC" ให้มีความยาวทั้งหมด 20:
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 |
---|
ตัวอย่างเพิ่มเติม
ตัวอย่าง
เลื่อนข้อความไปทางขวาใน "CustomerName" ด้วย "ABC" ให้มีความยาวทั้งหมด 30:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;