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