وظيفة 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;